summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/components/GameConfigurationControls.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/GameConfigurationControls.tsx b/src/components/GameConfigurationControls.tsx
index 6bea2e0..a7e3fec 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" | "transport">;
+ workaroundTarget?: Pick<GameTarget, "appid" | "nonSteam" | "directFlatpak">;
onRepairWorkaround?: () => Promise<boolean>;
}
@@ -36,7 +36,7 @@ export function GameConfigurationControls({
<WorkaroundsSection
appId={workaroundTarget.appid}
nonSteam={workaroundTarget.nonSteam}
- transport={workaroundTarget.transport}
+ directFlatpak={workaroundTarget.directFlatpak === true}
onRepair={onRepairWorkaround}
/>
)}