Compare commits

...

1 Commits

Author SHA1 Message Date
oguzhankoral 043963e087 fix: account by url should default to active one first 2025-11-11 18:27:47 +03:00
+3
View File
@@ -286,6 +286,9 @@ export const useAccountStore = defineStore('accountStore', () => {
}
const accountByServerUrl = (serverUrl: string) => {
if (activeAccount.value.accountInfo.serverInfo.url === serverUrl) {
return activeAccount.value
}
const accountMatchWithServerUrl = accounts.value.find(
(acc) => acc.accountInfo.serverInfo.url === serverUrl
)