Skip to content

Commit

Permalink
Fix refresh on pricing page
Browse files Browse the repository at this point in the history
  • Loading branch information
Lakeyzer authored and HarmlessHarm committed Nov 2, 2024
1 parent f7e15ec commit 6a0f2d6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/Tiers.vue
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@
</div>
<div slot="footer">
<router-link
v-if="t.price === 'Free' && !user"
v-if="t.price === 'Free'"
class="btn btn-block btn-square bg-patreon-red"
to="/sign-up"
:to="!user ? '/sign-up' : '/content'"
>
Use for Free
</router-link>
Expand Down
4 changes: 3 additions & 1 deletion src/views/Pages/Patreon.vue
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@
<router-link class="btn" to="/sign-up"> Create a Shieldmaiden account </router-link>
</div>
<div v-else-if="!userInfo.patreon_id" class="d-flex justify-content-center mb-5">
<PatreonLinkButton />
<q-no-ssr>
<PatreonLinkButton />
</q-no-ssr>
</div>

<Tiers class="mb-4" />
Expand Down

0 comments on commit 6a0f2d6

Please sign in to comment.