Skip to content

Commit

Permalink
fix data tier issue in ssr build
Browse files Browse the repository at this point in the history
  • Loading branch information
yyx990803 committed Nov 2, 2024
1 parent 6dd2f7a commit 18eaa5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .vitepress/theme/components/SponsorsGroup.vue
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ function resolveList(data: SponsorData) {
>Become a Sponsor</a
>
<a
v-if="tier === 'special' && !data[tier]?.length"
v-if="tier === 'special' && data && !data[tier]?.length"
href="mailto:[email protected]?subject=Vue.js%20special%20sponsor%20inquiry"
class="sponsor-item action"
@click="track(true)"
Expand Down

0 comments on commit 18eaa5e

Please sign in to comment.