fix: typo in /wallet redirect (#3593)

This commit is contained in:
dni ⚡
2025-11-27 13:08:02 +01:00
committed by GitHub
parent 5711b4b804
commit 1057b4693f
2 changed files with 2 additions and 2 deletions
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -31,7 +31,7 @@ const routes = [
path: '/wallet',
redirect: to => {
const walletId = window.g?.lastActiveWallet || window.user?.wallets[0].id
return `/wallet/${to.query.val || walletId || 'default'}`
return `/wallet/${to.query.wal || walletId || 'default'}`
}
},
{