diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/GameConfigurationSelector.tsx | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/components/GameConfigurationSelector.tsx b/src/components/GameConfigurationSelector.tsx index 50b2cf8..df0c3e9 100644 --- a/src/components/GameConfigurationSelector.tsx +++ b/src/components/GameConfigurationSelector.tsx @@ -174,13 +174,6 @@ export function GameConfigurationSelector({ <Field label="No installed games" description="Steam has not reported any eligible games" /> </PanelSectionRow> )} - {availableGames.length > 0 && ( - <PanelSectionRow> - <ButtonItem layout="below" onClick={confirmEnableAll}> - Enable all available games - </ButtonItem> - </PanelSectionRow> - )} <GameGroup title="LSFG-VK Enabled" games={configuredSteamGames} @@ -210,6 +203,13 @@ export function GameConfigurationSelector({ onToggle={toggleAvailableNonSteam} onSelect={onSelect} /> + {availableGames.length > 0 && ( + <PanelSectionRow> + <ButtonItem layout="below" onClick={confirmEnableAll}> + Enable all available games + </ButtonItem> + </PanelSectionRow> + )} <PanelSectionRow> <ButtonItem layout="below" |
