We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6339885 commit 848e690Copy full SHA for 848e690
src/Http/Livewire/PageHints.php
@@ -80,7 +80,7 @@ public function submit(): void
80
->title(__('filament-page-hints::translations.notification.upsert'))
81
->success()
82
->send();
83
- $this->redirectRoute($data['route']);
+ $this->redirect($data['url']);
84
}
85
86
public function editPageHint(PageHint $hint): void
@@ -101,7 +101,7 @@ public function deletePageHint(PageHint $hint): void
101
->title(__('filament-page-hints::translations.notification.delete'))
102
103
104
- $this->redirectRoute($hint->route);
+ $this->redirect($hint->url);
105
106
107
protected function getFormModel(): PageHint
0 commit comments