Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
victore13 authored and github-actions[bot] committed Sep 13, 2024
1 parent 958e1ac commit 76c9187
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions resources/lang/en/translations.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

return [
'can-also-authenticate' => 'you can also authenticate with:',
];
2 changes: 2 additions & 0 deletions resources/lang/es/translations.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

return [
'can-also-authenticate' => 'tambien puedes autenticarte con:',
];
1 change: 1 addition & 0 deletions src/Commands/OAuthCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ public function handle(): int
info('Migrations have been executed.');

info('OAuth package configured correctly!');

return self::SUCCESS;
}

Expand Down
2 changes: 1 addition & 1 deletion src/Controllers/OAuthController.php
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public function renew(): null|\Illuminate\Routing\Redirector|RedirectResponse
Auth::guard(config()->string('oauth.guard_name'))->logout();

return Redirect::route('filament.loki.auth.login')
->with(['message' => 'Your session has expired. Please log in again.']);
->with(['message' => 'Your session has expired. Please log in again.']);
}

/** @var Model $user */
Expand Down

0 comments on commit 76c9187

Please sign in to comment.