Skip to content

Commit 55bc4e6

Browse files
committed
fix: removes custom error message
1 parent 4d54a4c commit 55bc4e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/application/services/useNote.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ export default function (options: UseNoteComposableOptions): UseNoteComposableSt
176176
parentNote.value = response.parentNote;
177177
} catch (error) {
178178
if (error instanceof NotFoundError) {
179-
void router.push(`/error/404?message=${error.message}`);
179+
void router.push(`/error/404`);
180180
} else {
181181
void router.push('/error/500');
182182
}

0 commit comments

Comments
 (0)