summaryrefslogtreecommitdiff
path: root/src/components/Content.tsx
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-10-20 12:50:03 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-10-20 12:50:03 -0400
commitc3f510a2944cf8436c8bccedcb77db9bd6a7f2c3 (patch)
treea603425e25da40307b49397d20ba5bed19d7955a /src/components/Content.tsx
parentbd2fdea07cde9aaac77047aa4a7d406c39e5a56e (diff)
downloaddecky-lsfg-vk-c3f510a2944cf8436c8bccedcb77db9bd6a7f2c3.tar.gz
decky-lsfg-vk-c3f510a2944cf8436c8bccedcb77db9bd6a7f2c3.zip
chore: remove unused elements previously commented out, for store release prep
Diffstat (limited to 'src/components/Content.tsx')
-rw-r--r--src/components/Content.tsx16
1 files changed, 2 insertions, 14 deletions
diff --git a/src/components/Content.tsx b/src/components/Content.tsx
index fdb8672..08027d3 100644
--- a/src/components/Content.tsx
+++ b/src/components/Content.tsx
@@ -8,12 +8,8 @@ import { InstallationButton } from "./InstallationButton";
import { ConfigurationSection } from "./ConfigurationSection";
import { ProfileManagement } from "./ProfileManagement";
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 FlatpaksModal from "./FlatpaksModal";
import { ConfigurationData } from "../config/configSchema";
@@ -106,7 +102,6 @@ export function Content() {
{/* Clipboard buttons - only show if installed */}
{isInstalled && (
<>
- {/* <ClipboardDisplay /> */}
<SmartClipboardButton />
<FgmodClipboardButton />
</>
@@ -131,15 +126,8 @@ export function Content() {
/>
)}
- {/* Usage instructions - always visible for user guidance */}
- <UsageInstructions config={config} />
-
- {/* Wiki and clipboard buttons - always available for documentation */}
- {/* <WikiButton /> */}
- {/* <ClipboardButton /> */}
-
- {/* Plugin Update Checker */}
- {/* <PluginUpdateChecker /> */}
+ {/* Usage instructions - always visible for user guidance */}
+ <UsageInstructions config={config} />
{/* Show installation components at bottom when fully installed */}
{isInstalled && (