Skip to content

Commit db37b0a

Browse files
committed
Fix route parameters
1 parent 30c872c commit db37b0a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/routes/web.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
Route::get('s-dashboard/{dashboardKey}', fn ($entityKey) => redirect(
2222
route('code16.sharp.dashboard', [
2323
'filterKey' => sharp()->context()->globalFilterUrlSegmentValue(),
24-
'entityKey' => $entityKey,
24+
'dashboardKey' => $entityKey,
2525
])
2626
));
2727
Route::get('s-list/{entityKey}', fn ($entityKey) => redirect(

0 commit comments

Comments
 (0)