diff --git a/qt/launcher-gui/src/routes/Action.svelte b/qt/launcher-gui/src/routes/Action.svelte
index 9ad44f311..e939e5985 100644
--- a/qt/launcher-gui/src/routes/Action.svelte
+++ b/qt/launcher-gui/src/routes/Action.svelte
@@ -13,11 +13,13 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
existing,
allowBetas,
choose,
+ uninstall,
}: {
releases: Versions;
existing: ExistingVersions;
allowBetas: boolean;
choose: (version: string, existing: boolean, current?: string) => void;
+ uninstall: (() => void) | null;
} = $props();
let availableVersions = $derived(
@@ -77,6 +79,13 @@ License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
+ {#if uninstall != null}
+
+
+
+ {/if}