summaryrefslogtreecommitdiff
path: root/src/components/Content.tsx
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-08-18 12:33:26 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-08-18 12:33:26 -0400
commitc6092d861cc3fb4d333dd47ec135474b030fb9b4 (patch)
treefa894379f533e37aee332a5eb31ee4b436baaf98 /src/components/Content.tsx
parent234ac6e00c4e9e337e4c88829deee665d1a5303c (diff)
downloaddecky-lsfg-vk-c6092d861cc3fb4d333dd47ec135474b030fb9b4.tar.gz
decky-lsfg-vk-c6092d861cc3fb4d333dd47ec135474b030fb9b4.zip
make all sections collapsible
Diffstat (limited to 'src/components/Content.tsx')
-rw-r--r--src/components/Content.tsx16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/components/Content.tsx b/src/components/Content.tsx
index 7815951..142f111 100644
--- a/src/components/Content.tsx
+++ b/src/components/Content.tsx
@@ -93,6 +93,14 @@ export function Content() {
<SmartClipboardButton />
+ {/* Configuration Section - only show if installed */}
+ {isInstalled && (
+ <ConfigurationSection
+ config={config}
+ onConfigChange={handleConfigChange}
+ />
+ )}
+
{/* Profile Management - only show if installed */}
{isInstalled && (
<ProfileManagement
@@ -104,14 +112,6 @@ export function Content() {
/>
)}
- {/* Configuration Section - only show if installed */}
- {isInstalled && (
- <ConfigurationSection
- config={config}
- onConfigChange={handleConfigChange}
- />
- )}
-
<UsageInstructions config={config} />
<WikiButton />