Skip to content

Commit f36c8b5

Browse files
committed
fix: Clearer message when wallet not connected
1 parent 47f7b8e commit f36c8b5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/layouts/AuthenticatedPage.vue

+1-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,8 @@ const accountStore = useAccountStore();
1616
1717
onMounted(async () => {
1818
if (accountStore.account === null) {
19-
$q.notify({ message: 'Account not connected', color: 'negative' });
19+
$q.notify({ message: 'You must connect your wallet to access this page', color: 'negative' });
2020
await router.push({ path: '/' });
21-
return;
2221
}
2322
});
2423
</script>

0 commit comments

Comments
 (0)