Skip to content

Commit 18eaa5e

Browse files
committed
fix data tier issue in ssr build
1 parent 6dd2f7a commit 18eaa5e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.vitepress/theme/components/SponsorsGroup.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ function resolveList(data: SponsorData) {
9696
>Become a Sponsor</a
9797
>
9898
<a
99-
v-if="tier === 'special' && !data[tier]?.length"
99+
v-if="tier === 'special' && data && !data[tier]?.length"
100100
href="mailto:[email protected]?subject=Vue.js%20special%20sponsor%20inquiry"
101101
class="sponsor-item action"
102102
@click="track(true)"

0 commit comments

Comments
 (0)