Compare commits

...
Author SHA1 Message Date
tdgao 0debb71a97 fix: trying to get formatMessage with no current platform 2026-02-19 10:20:54 -07:00
+4 -3
View File
@@ -1082,9 +1082,10 @@ const currentPlatform = computed(() => {
)
})
const currentPlatformText = computed(() =>
formatMessage(getTagMessage(currentPlatform.value, 'loader')),
)
const currentPlatformText = computed(() => {
if (!currentPlatform.value) return null
return formatMessage(getTagMessage(currentPlatform.value, 'loader'))
})
const releaseVersions = computed(() => {
const set = new Set()