diff --git a/desktop/src/renderer/src/lib/components/update/UpdatesSection.svelte b/desktop/src/renderer/src/lib/components/update/UpdatesSection.svelte index b7713abc8..9a600c613 100644 --- a/desktop/src/renderer/src/lib/components/update/UpdatesSection.svelte +++ b/desktop/src/renderer/src/lib/components/update/UpdatesSection.svelte @@ -128,7 +128,7 @@ onMount(async () => { - {#if liveStatus.state !== "idle"} + {#if liveStatus.state !== "idle" && liveStatus.state !== "not-available"}
{#if liveStatus.state === "checking"} @@ -139,8 +139,6 @@ onMount(async () => { Downloading v{liveStatus.version} ยท {(liveStatus.progress?.percent ?? 0).toFixed(0)}% {:else if liveStatus.state === "downloaded"} Update v{liveStatus.version} ready to install - {:else if liveStatus.state === "not-available"} - {liveStatus.code === "dev-mode" ? "Updates available in packaged builds" : "You're on the latest version"} {:else if liveStatus.state === "error"} Update error: {liveStatus.error} {/if}