1
0
Fork 0
mirror of https://github.com/Blah-IM/Weblah.git synced 2025-05-20 00:51:09 +00:00

fix: Update redirect path after account creation to profile page

This commit is contained in:
Shibo Lyu 2025-04-27 18:59:20 +08:00
parent 833460d709
commit eb710a06c8

View file

@ -49,7 +49,7 @@
try { try {
const idKeyId = await manager.createAccount(profile, password); const idKeyId = await manager.createAccount(profile, password);
manager.currentAccountId = idKeyId; manager.currentAccountId = idKeyId;
goto('/settings'); goto('/settings/profile');
} catch (error) { } catch (error) {
console.error(error); console.error(error);
} }