We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6211a0b commit 220f6c5Copy full SHA for 220f6c5
src/pages/download.page.tsx
@@ -122,15 +122,17 @@ function Page(pageProps: {
122
</HStack>
123
</VStack>
124
</Button>
125
- <Text color="white">
126
- Or download the{' '}
127
- <Link
128
- color="blue.300"
129
- href={zipBuild?.browser_download_url}
130
- >
131
- portable version (zip)
132
- </Link>
133
- </Text>
+ {zipBuild != null && (
+ <Text color="white">
+ Or download the{' '}
+ <Link
+ color="blue.300"
+ href={zipBuild?.browser_download_url}
+ >
+ portable version (zip)
+ </Link>
134
+ </Text>
135
+ )}
136
137
<Box
138
color="white"
0 commit comments