fix: type issue with changlelog modal visibility

This commit is contained in:
Zack Spear
2024-01-11 21:45:47 -06:00
committed by Zack Spear
parent 93655fef62
commit 7a27560b0d
+1 -1
View File
@@ -26,7 +26,7 @@ const { releaseForUpdate: updateOsChangelogModalVisible } = storeToRefs(useUpdat
<UpcCallbackFeedback :t="t" :open="callbackStatus !== 'ready'" />
<UpcTrial :t="t" :open="trialModalVisible" />
<UpdateOsCheckUpdateResponseModal :t="t" :open="updateOsModalVisible" />
<UpdateOsChangelogModal :t="t" :open="updateOsChangelogModalVisible" />
<UpdateOsChangelogModal :t="t" :open="!!updateOsChangelogModalVisible" />
</div>
</template>