summaryrefslogtreecommitdiff
path: root/src/components/Content.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Content.tsx')
-rw-r--r--src/components/Content.tsx11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/components/Content.tsx b/src/components/Content.tsx
index e0adf3f..e870dda 100644
--- a/src/components/Content.tsx
+++ b/src/components/Content.tsx
@@ -11,6 +11,7 @@ import { UsageInstructions } from "./UsageInstructions";
import { WikiButton } from "./WikiButton";
import { ClipboardButton } from "./ClipboardButton";
import { SmartClipboardButton } from "./SmartClipboardButton";
+import { FgmodClipboardButton } from "./FgmodClipboardButton";
import { PluginUpdateChecker } from "./PluginUpdateChecker";
import { NerdStuffModal } from "./NerdStuffModal";
import { ConfigurationData } from "../config/configSchema";
@@ -96,7 +97,13 @@ export function Content() {
</>
)}
- <SmartClipboardButton />
+ {/* Clipboard buttons - only show if installed */}
+ {isInstalled && (
+ <>
+ <SmartClipboardButton />
+ <FgmodClipboardButton />
+ </>
+ )}
{/* Profile Management - only show if installed */}
{isInstalled && (
@@ -117,8 +124,10 @@ export function Content() {
/>
)}
+ {/* Usage instructions - always visible for user guidance */}
<UsageInstructions config={config} />
+ {/* Wiki and clipboard buttons - always available for documentation */}
<WikiButton />
<ClipboardButton />