Skip to content

Commit

Permalink
fix: in unlock page pathe were resolved two times
Browse files Browse the repository at this point in the history
  • Loading branch information
phoebus-84 committed Feb 5, 2024
1 parent c2dcbf1 commit 9246e07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/routes/[[lang]]/(auth)/unlock/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
try {
await authenticate();
await unlockApp();
await goto(i18n.resolveRoute('/wallet'));
await goto('/wallet');
} catch (e) {
error = 'BIOMETRY_ERROR';
}
Expand All @@ -42,7 +42,7 @@
async function testUnlock() {
await unlockApp();
await goto(i18n.resolveRoute('/home'));
await goto('/home');
}
</script>

Expand Down

0 comments on commit 9246e07

Please sign in to comment.