diff options
Diffstat (limited to 'src/components/Content.tsx')
| -rw-r--r-- | src/components/Content.tsx | 16 |
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 /> |
