diff --git a/README.md b/README.md index 53101d5..719748b 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ Demo site [here](https://nuxt3-saas-boilerplate.netlify.app/) ### Look and Feel, Design System and Customisation - [x] Default UI isn't too crap - [x] Integrated Design system including theming (Tailwind + daisyUI) -- [ ] Toasts for things like reset email sent +- [x] Toasts for things like reset email sent - [ ] Modals, just because people like modals ### Demo Software (Notes) diff --git a/components/AppHeader.vue b/components/AppHeader.vue index a1e8701..e4800f7 100644 --- a/components/AppHeader.vue +++ b/components/AppHeader.vue @@ -5,6 +5,8 @@ const user = useSupabaseUser(); const accountStore = useAccountStore() const { dbUser, activeAccountId } = storeToRefs(accountStore); + const notifyStore = useNotifyStore(); + const { notifications } = storeToRefs(notifyStore); onMounted(async () => { await accountStore.init() @@ -21,6 +23,21 @@