summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-08-18 12:36:35 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-08-18 12:36:35 -0400
commit119d3d7cb21fb96f220ec25f478d4b3621ae402f (patch)
tree2bde86a2dd508dbba9e959de45969f653657f6a2 /src
parentc6092d861cc3fb4d333dd47ec135474b030fb9b4 (diff)
downloaddecky-lsfg-vk-119d3d7cb21fb96f220ec25f478d4b3621ae402f.tar.gz
decky-lsfg-vk-119d3d7cb21fb96f220ec25f478d4b3621ae402f.zip
profile at top and readout in header
Diffstat (limited to 'src')
-rw-r--r--src/components/Content.tsx16
-rw-r--r--src/components/ProfileManagement.tsx2
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>