Skip to content

Commit c196cce

Browse files
authored
Fix redirect in settings.php (#125)
1 parent 5a6b533 commit c196cce

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

routes/settings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
use Inertia\Inertia;
77

88
Route::middleware('auth')->group(function () {
9-
Route::redirect('settings', 'settings/profile');
9+
Route::redirect('settings', '/settings/profile');
1010

1111
Route::get('settings/profile', [ProfileController::class, 'edit'])->name('profile.edit');
1212
Route::patch('settings/profile', [ProfileController::class, 'update'])->name('profile.update');

0 commit comments

Comments
 (0)