summaryrefslogtreecommitdiff
path: root/src/components/Content.tsx
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-09-17 15:27:15 -0400
committerGitHub <noreply@github.com>2025-09-17 15:27:15 -0400
commit295831a14b002604d2a1f207338c6034ab743c8e (patch)
treed7b2b78a89b50a95ffec63c6880ac1e39c8a5406 /src/components/Content.tsx
parent21b076df45f542fdc02e8b5574abcd91e9d68f89 (diff)
parent26b8d1933821805fcef9275519884214fb1bc175 (diff)
downloaddecky-lsfg-vk-295831a14b002604d2a1f207338c6034ab743c8e.tar.gz
decky-lsfg-vk-295831a14b002604d2a1f207338c6034ab743c8e.zip
Merge pull request #172 from xXJSONDeruloXx/decky-fg-crossoverv0.10.9
Decky fg crossover
Diffstat (limited to 'src/components/Content.tsx')
-rw-r--r--src/components/Content.tsx13
1 files changed, 12 insertions, 1 deletions
diff --git a/src/components/Content.tsx b/src/components/Content.tsx
index e0adf3f..e82a7c3 100644
--- a/src/components/Content.tsx
+++ b/src/components/Content.tsx
@@ -11,6 +11,8 @@ import { UsageInstructions } from "./UsageInstructions";
import { WikiButton } from "./WikiButton";
import { ClipboardButton } from "./ClipboardButton";
import { SmartClipboardButton } from "./SmartClipboardButton";
+import { FgmodClipboardButton } from "./FgmodClipboardButton";
+import { ClipboardDisplay } from "./ClipboardDisplay";
import { PluginUpdateChecker } from "./PluginUpdateChecker";
import { NerdStuffModal } from "./NerdStuffModal";
import { ConfigurationData } from "../config/configSchema";
@@ -96,7 +98,14 @@ export function Content() {
</>
)}
- <SmartClipboardButton />
+ {/* Clipboard buttons - only show if installed */}
+ {isInstalled && (
+ <>
+ <ClipboardDisplay />
+ <SmartClipboardButton />
+ <FgmodClipboardButton />
+ </>
+ )}
{/* Profile Management - only show if installed */}
{isInstalled && (
@@ -117,8 +126,10 @@ export function Content() {
/>
)}
+ {/* Usage instructions - always visible for user guidance */}
<UsageInstructions config={config} />
+ {/* Wiki and clipboard buttons - always available for documentation */}
<WikiButton />
<ClipboardButton />