summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2026-09-10 16:35:33 -0400
committerKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2026-09-10 16:35:33 -0400
commitf4b67511ddbe32948927ce73b5f3e067755a904d (patch)
tree7507258a7d21548dd79b6f2f4be063af88ac658f /src/components
parent1de34909f7caa0afc9c5b2745112ce29173eda69 (diff)
downloaddecky-lsfg-vk-f4b67511ddbe32948927ce73b5f3e067755a904d.tar.gz
decky-lsfg-vk-f4b67511ddbe32948927ce73b5f3e067755a904d.zip
refactor: simplify steam workaround target
Diffstat (limited to 'src/components')
-rw-r--r--src/components/GameConfigurationControls.tsx3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/GameConfigurationControls.tsx b/src/components/GameConfigurationControls.tsx
index a7e3fec..7025f78 100644
--- a/src/components/GameConfigurationControls.tsx
+++ b/src/components/GameConfigurationControls.tsx
@@ -10,7 +10,7 @@ interface Props {
autoFocusFpsMultiplier?: boolean;
onFpsMultiplierFocused?: () => void;
showWorkarounds?: boolean;
- workaroundTarget?: Pick<GameTarget, "appid" | "nonSteam" | "directFlatpak">;
+ workaroundTarget?: Pick<GameTarget, "appid" | "nonSteam">;
onRepairWorkaround?: () => Promise<boolean>;
}
@@ -36,7 +36,6 @@ export function GameConfigurationControls({
<WorkaroundsSection
appId={workaroundTarget.appid}
nonSteam={workaroundTarget.nonSteam}
- directFlatpak={workaroundTarget.directFlatpak === true}
onRepair={onRepairWorkaround}
/>
)}