Skip to content

Commit b18bb6f

Browse files
fix route redirect for settings path (#70)
1 parent 854097b commit b18bb6f

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)