From 0e51abafa2fed9fc829dceb48728d0e8bbf0dcaf Mon Sep 17 00:00:00 2001 From: Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> Date: Thu, 10 Sep 2026 16:32:25 -0400 Subject: refactor: move flatpak setup into profiles tab --- src/components/SetupTab.tsx | 52 +++++++++++++++++++++------------------------ 1 file changed, 24 insertions(+), 28 deletions(-) (limited to 'src') diff --git a/src/components/SetupTab.tsx b/src/components/SetupTab.tsx index 1a62c2a..d769200 100644 --- a/src/components/SetupTab.tsx +++ b/src/components/SetupTab.tsx @@ -1,7 +1,6 @@ import { ButtonItem, Field, PanelSection, PanelSectionRow } from "@decky/ui"; import { type SteamBranchStatus } from "../api/lsfgApi"; import t from "../i18n/i18n"; -import { FlatpakSetupSection } from "./FlatpakSetupSection"; interface SetupTabProps { isInstalled: boolean; @@ -37,36 +36,33 @@ export function SetupTab(props: SetupTabProps) { : t("INSTALL_INSTALL_BTN", "Install LSFG-VK"); return ( - <> - + + + + + + + + {steamBranchStatus?.installed && ( - - - - {steamBranchStatus?.installed && ( - - - - )} - - - {buttonLabel} - - - - - + )} + + + {buttonLabel} + + + ); } -- cgit v1.2.3