diff --git a/kez-chat/web/src/routes/CreateAccount.svelte b/kez-chat/web/src/routes/CreateAccount.svelte index 1f49072..818ace0 100644 --- a/kez-chat/web/src/routes/CreateAccount.svelte +++ b/kez-chat/web/src/routes/CreateAccount.svelte @@ -265,7 +265,7 @@
diff --git a/kez-chat/web/src/routes/Unlock.svelte b/kez-chat/web/src/routes/Unlock.svelte index 98b279d..ca77808 100644 --- a/kez-chat/web/src/routes/Unlock.svelte +++ b/kez-chat/web/src/routes/Unlock.svelte @@ -47,7 +47,7 @@ const id = await unlockIdentity(passphrase); session.setUnlocked(id); passphrase = ""; - push("/dashboard"); + push("/chats"); } catch (e) { error = (e as Error).message; } finally { @@ -62,7 +62,7 @@ const seed = await unlockWithBiometric(); const id = await unlockWithSeed(seed); session.setUnlocked(id); - push("/dashboard"); + push("/chats"); } catch (e) { error = (e as Error).message; // If biometric fails (user cancelled, sensor errored), fall back