summaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2026-09-10 16:36:50 -0400
committerKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2026-09-10 16:36:50 -0400
commit59b9148054e2f0c7dcd33b0e5393899d7a92f93e (patch)
tree1a08c54b87ac5581179b179395a2577226057254 /src/components
parent1949dd018bd7492c77736e19f9a25b14367187ff (diff)
downloaddecky-lsfg-vk-59b9148054e2f0c7dcd33b0e5393899d7a92f93e.tar.gz
decky-lsfg-vk-59b9148054e2f0c7dcd33b0e5393899d7a92f93e.zip
refactor: keep game profiles steam scoped
Diffstat (limited to 'src/components')
-rw-r--r--src/components/ConfigurationTab.tsx6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/components/ConfigurationTab.tsx b/src/components/ConfigurationTab.tsx
index 18575b4..a6d4c2a 100644
--- a/src/components/ConfigurationTab.tsx
+++ b/src/components/ConfigurationTab.tsx
@@ -99,11 +99,7 @@ export function ConfigurationTab({
}
const profileLabel = selectedTarget?.name || "Game profile";
- const profileTransport = selectedTarget
- ? selectedTarget.directFlatpak
- ? "Non-Steam · Direct Flatpak"
- : selectedTarget.nonSteam ? "Non-Steam" : "Steam"
- : "Game";
+ const profileTransport = selectedTarget?.nonSteam ? "Non-Steam" : "Steam";
const profileDescription = selectedTarget
? `${profileTransport} · App ID ${selectedTarget.appid} · ${selectedTarget.configured ? "LSFG-VK Enabled" : "LSFG-VK not enabled"}`
: "Game is no longer available";