We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47f7b8e commit f36c8b5Copy full SHA for f36c8b5
src/layouts/AuthenticatedPage.vue
@@ -16,9 +16,8 @@ const accountStore = useAccountStore();
16
17
onMounted(async () => {
18
if (accountStore.account === null) {
19
- $q.notify({ message: 'Account not connected', color: 'negative' });
+ $q.notify({ message: 'You must connect your wallet to access this page', color: 'negative' });
20
await router.push({ path: '/' });
21
- return;
22
}
23
});
24
</script>
0 commit comments