diff --git a/src/components/download/PlatformDownload.astro b/src/components/download/PlatformDownload.astro index f09b551..983aef9 100644 --- a/src/components/download/PlatformDownload.astro +++ b/src/components/download/PlatformDownload.astro @@ -12,12 +12,10 @@ interface PlatformReleases { x86_64?: | { tarball?: ReleaseInfo - appImage?: ReleaseInfo } | ReleaseInfo aarch64?: { tarball?: ReleaseInfo - appImage?: ReleaseInfo } arm64?: ReleaseInfo flathub?: { all: ReleaseInfo } @@ -75,10 +73,10 @@ function isFlatReleaseInfo(obj: unknown): obj is ReleaseInfo { {releases.x86_64 && typeof releases.x86_64 === "object" && "tarball" in releases.x86_64 && - (releases.x86_64.tarball || releases.x86_64.appImage) && ( + (releases.x86_64.tarball) && (