summaryrefslogtreecommitdiff
path: root/src/components/UsageInstructions.tsx
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2025-07-21 23:04:08 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2025-07-21 23:04:08 -0400
commite54b7e2c5f3a736f248353317007f922771ab0c7 (patch)
tree6fc8931d44b1fa93269d2bba89c9790bfd83fd7a /src/components/UsageInstructions.tsx
parent2106ef8eb31ee46611fce07dd715d3ac1c4ca0ab (diff)
downloaddecky-lsfg-vk-e54b7e2c5f3a736f248353317007f922771ab0c7.tar.gz
decky-lsfg-vk-e54b7e2c5f3a736f248353317007f922771ab0c7.zip
refactor: remove unused backend files and improve configuration handling in TypeScript
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={{