We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e01c4a9 commit 63579f8Copy full SHA for 63579f8
src/renderer/src/components/SettingsModal.vue
@@ -53,7 +53,7 @@ onMounted(() => {
53
showUpdateNotAvailable.value = false
54
}, 5000)
55
})
56
- window.electronAPI.onAutoUpdaterError(async (_) => {
+ window.electronAPI.onAutoUpdaterError(async () => {
57
showUpdateNotAvailable.value = true
58
showErrorOnUpdateRequest.value = true
59
checkingForUpdate.value = false
@@ -105,7 +105,7 @@ onMounted(() => {
105
<span>Check for updates</span>
106
</div>
107
</SecondaryButton>
108
- <div class="flex text-sm text-text-primary" v-if="showUpdateNotAvailable">
+ <div v-if="showUpdateNotAvailable" class="flex text-sm text-text-primary">
109
No update available.
110
<span v-if="showErrorOnUpdateRequest"
111
>There was an error while fetching the update.</span
0 commit comments