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 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 /> |
