diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/Content.tsx | 16 | ||||
| -rw-r--r-- | src/components/ProfileManagement.tsx | 2 |
2 files changed, 9 insertions, 9 deletions
diff --git a/src/components/Content.tsx b/src/components/Content.tsx index 142f111..7815951 100644 --- a/src/components/Content.tsx +++ b/src/components/Content.tsx @@ -93,14 +93,6 @@ export function Content() { <SmartClipboardButton /> - {/* Configuration Section - only show if installed */} - {isInstalled && ( - <ConfigurationSection - config={config} - onConfigChange={handleConfigChange} - /> - )} - {/* Profile Management - only show if installed */} {isInstalled && ( <ProfileManagement @@ -112,6 +104,14 @@ export function Content() { /> )} + {/* Configuration Section - only show if installed */} + {isInstalled && ( + <ConfigurationSection + config={config} + onConfigChange={handleConfigChange} + /> + )} + <UsageInstructions config={config} /> <WikiButton /> diff --git a/src/components/ProfileManagement.tsx b/src/components/ProfileManagement.tsx index 4a75484..7c8966b 100644 --- a/src/components/ProfileManagement.tsx +++ b/src/components/ProfileManagement.tsx @@ -359,7 +359,7 @@ export function ProfileManagement({ currentProfile, onProfileChange }: ProfileMa color: "white" }} > - Select Profile + Profile: {selectedProfile === "decky-lsfg-vk" ? "Default" : selectedProfile} </div> </PanelSectionRow> |
