summaryrefslogtreecommitdiff
path: root/src/components/Content.tsx
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-09-17 16:16:43 -0400
committerGitHub <noreply@github.com>2025-09-17 16:16:43 -0400
commit40a73b4483500aa94a5e7c3c477b4ca75224de67 (patch)
tree2f02d0b7565ac58fcf45eb446950239c006e72dc /src/components/Content.tsx
parent295831a14b002604d2a1f207338c6034ab743c8e (diff)
parent80d237a18f7598648d2be3c660083c5e7a9b43e7 (diff)
downloaddecky-lsfg-vk-40a73b4483500aa94a5e7c3c477b4ca75224de67.tar.gz
decky-lsfg-vk-40a73b4483500aa94a5e7c3c477b4ca75224de67.zip
Merge pull request #173 from xXJSONDeruloXx/hide-clip-readout
hide clipboard readout
Diffstat (limited to 'src/components/Content.tsx')
-rw-r--r--src/components/Content.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Content.tsx b/src/components/Content.tsx
index e82a7c3..a00a595 100644
--- a/src/components/Content.tsx
+++ b/src/components/Content.tsx
@@ -12,7 +12,7 @@ import { WikiButton } from "./WikiButton";
import { ClipboardButton } from "./ClipboardButton";
import { SmartClipboardButton } from "./SmartClipboardButton";
import { FgmodClipboardButton } from "./FgmodClipboardButton";
-import { ClipboardDisplay } from "./ClipboardDisplay";
+// import { ClipboardDisplay } from "./ClipboardDisplay";
import { PluginUpdateChecker } from "./PluginUpdateChecker";
import { NerdStuffModal } from "./NerdStuffModal";
import { ConfigurationData } from "../config/configSchema";
@@ -101,7 +101,7 @@ export function Content() {
{/* Clipboard buttons - only show if installed */}
{isInstalled && (
<>
- <ClipboardDisplay />
+ {/* <ClipboardDisplay /> */}
<SmartClipboardButton />
<FgmodClipboardButton />
</>