refactor(user): Update redirectRoute calls in Create and Edit components to use navigate parameter for improved navigation consistency.

This commit is contained in:
Yoga Pangestu 2025-12-14 16:05:33 +07:00
parent 877c5ea061
commit 7e7ff93184
2 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ public function save(): void
$this->redirectRoute('studio.master.user.index', [
'notification' => 'Pegawai berhasil ditambahkan.',
]);
], navigate: true);
}
public function render(): View

View File

@ -43,7 +43,7 @@ public function save(): void
$this->redirectRoute('studio.master.user.index', [
'notification' => 'Pegawai berhasil diperbarui.',
]);
], navigate: true);
}
public function render(): View