summaryrefslogtreecommitdiff
path: root/src/components/UsageInstructions.tsx
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-07-22 00:17:50 -0400
committerGitHub <noreply@github.com>2025-07-22 00:17:50 -0400
commit4fee88babae0dc69a332480c3e491500dab64d7c (patch)
tree2e9ee6360337978e9264173a2e20daf5ec195393 /src/components/UsageInstructions.tsx
parent2106ef8eb31ee46611fce07dd715d3ac1c4ca0ab (diff)
parente83f026b0d1edf5a7ee1477f4b10eb574f506f95 (diff)
downloaddecky-lsfg-vk-4fee88babae0dc69a332480c3e491500dab64d7c.tar.gz
decky-lsfg-vk-4fee88babae0dc69a332480c3e491500dab64d7c.zip
Merge pull request #63 from xXJSONDeruloXx/cleanup-jul21
refactor: remove unused backend files and improve configuration handl…
Diffstat (limited to 'src/components/UsageInstructions.tsx')
-rw-r--r--src/components/UsageInstructions.tsx22
1 files changed, 1 insertions, 21 deletions
diff --git a/src/components/UsageInstructions.tsx b/src/components/UsageInstructions.tsx
index bcf258b..0c27517 100644
--- a/src/components/UsageInstructions.tsx
+++ b/src/components/UsageInstructions.tsx
@@ -5,7 +5,7 @@ interface UsageInstructionsProps {
config: ConfigurationData;
}
-export function UsageInstructions({ config }: UsageInstructionsProps) {
+export function UsageInstructions({ config: _config }: UsageInstructionsProps) {
return (
<>
<PanelSectionRow>
@@ -56,26 +56,6 @@ export function UsageInstructions({ config }: UsageInstructionsProps) {
</div>
</PanelSectionRow>
- {/* <PanelSectionRow>
- <div
- style={{
- fontSize: "12px",
- lineHeight: "1.4",
- opacity: "0.8",
- whiteSpace: "pre-wrap"
- }}
- >
- {`Current Configuration:
-• DLL Path: ${config.dll}
-• Multiplier: ${config.multiplier}x
-• Flow Scale: ${Math.round(config.flow_scale * 100)}%
-• Performance Mode: ${config.performance_mode ? "Yes" : "No"}
-• HDR Mode: ${config.hdr_mode ? "Yes" : "No"}
-• Present Mode: ${config.experimental_present_mode || "FIFO (VSync)"}
-• DXVK Frame Rate: ${config.dxvk_frame_rate > 0 ? `${config.dxvk_frame_rate} FPS` : "Off"}`}
- </div>
- </PanelSectionRow> */}
-
<PanelSectionRow>
<div
style={{