diff options
| author | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-09-17 15:03:57 -0400 |
|---|---|---|
| committer | xXJSONDeruloXx <danielhimebauch@gmail.com> | 2025-09-17 15:03:57 -0400 |
| commit | 227acb969dc4b36cae427d2cf6a063ec51f41e13 (patch) | |
| tree | 8d8e41ec4b4503bd666b6b1662fa82921b54043c /src/components/Content.tsx | |
| parent | bac59e55e319d871de5ac70c47199eb209fee66e (diff) | |
| download | decky-lsfg-vk-227acb969dc4b36cae427d2cf6a063ec51f41e13.tar.gz decky-lsfg-vk-227acb969dc4b36cae427d2cf6a063ec51f41e13.zip | |
feat: add clipboard readout and logging
Diffstat (limited to 'src/components/Content.tsx')
| -rw-r--r-- | src/components/Content.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/Content.tsx b/src/components/Content.tsx index e870dda..e82a7c3 100644 --- a/src/components/Content.tsx +++ b/src/components/Content.tsx @@ -12,6 +12,7 @@ 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"; @@ -100,6 +101,7 @@ export function Content() { {/* Clipboard buttons - only show if installed */} {isInstalled && ( <> + <ClipboardDisplay /> <SmartClipboardButton /> <FgmodClipboardButton /> </> |
