diff options
| author | Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> | 2026-09-10 16:36:50 -0400 |
|---|---|---|
| committer | Kurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com> | 2026-09-10 16:36:50 -0400 |
| commit | 59b9148054e2f0c7dcd33b0e5393899d7a92f93e (patch) | |
| tree | 1a08c54b87ac5581179b179395a2577226057254 /src/components | |
| parent | 1949dd018bd7492c77736e19f9a25b14367187ff (diff) | |
| download | decky-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.tsx | 6 |
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"; |
