From bac59e55e319d871de5ac70c47199eb209fee66e Mon Sep 17 00:00:00 2001 From: xXJSONDeruloXx Date: Wed, 17 Sep 2025 14:57:02 -0400 Subject: add deckyfg combo launch option clipboard --- src/components/Content.tsx | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'src/components/Content.tsx') 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() { )} - + {/* Clipboard buttons - only show if installed */} + {isInstalled && ( + <> + + + + )} {/* Profile Management - only show if installed */} {isInstalled && ( @@ -117,8 +124,10 @@ export function Content() { /> )} + {/* Usage instructions - always visible for user guidance */} + {/* Wiki and clipboard buttons - always available for documentation */} -- cgit v1.2.3