Skip to content

Commit

Permalink
fix store getter
Browse files Browse the repository at this point in the history
  • Loading branch information
Šimon Macek committed Sep 5, 2024
1 parent 07ad5e0 commit 97b9f7e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/homepage/NewsletterFeature.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default defineComponent({
},
setup(props) {
const loginStore = useLoginStore();
const userEmail = loginStore.userEmailString;
const userEmail = loginStore.getUser.email;
const newsletterTitle = computed(() => {
return props.title
Expand Down

0 comments on commit 97b9f7e

Please sign in to comment.