Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
MiniDigger committed Nov 10, 2024
1 parent a7fa398 commit 4a60fdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/pages/auth/signup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ async function submit() {
try {
await useInternalApi("auth/signup", "POST", form);
done.value = true;
} catch (e) {
} catch (e: any) {
notification.fromError(i18n, e);
if (e?.response?.data?.message === "error.captcha") {
turnstile.value?.reset();
Expand Down

0 comments on commit 4a60fdd

Please sign in to comment.