This commit is contained in:
2026-03-07 19:07:11 -06:00
parent 61c04ee34f
commit 28af060d38

View File

@@ -70,10 +70,10 @@ class EveLoginController extends Controller
return redirect()->route('dashboard');
} catch (Throwable $e) {
report($e);
dd($e);
return redirect()
->route('login')
->with('error', 'SSO login failed. Please try again.');
->with('error', $e);
}
}
}