Skip to content

Commit

Permalink
docs(UserOneBadge): fix store checking for subscriber
Browse files Browse the repository at this point in the history
  • Loading branch information
johnleider committed Dec 21, 2023
1 parent a7046b4 commit 7968c1e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/docs/src/components/user/badges/UserOneBadge.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<v-tooltip
v-if="auth.isOneSubscriber"
v-if="one.isSubscriber"
text="Vuetify One Subscriber"
location="bottom"
>
Expand All @@ -16,7 +16,7 @@

<script setup>
// Stores
import { useAuthStore } from '@vuetify/one'
import { useOneStore } from '@vuetify/one'
const auth = useAuthStore()
const one = useOneStore()
</script>

0 comments on commit 7968c1e

Please sign in to comment.