summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/components/SmartClipboardButton.tsx9
-rw-r--r--src/components/UsageInstructions.tsx42
2 files changed, 7 insertions, 44 deletions
diff --git a/src/components/SmartClipboardButton.tsx b/src/components/SmartClipboardButton.tsx
index 7217e83..c90515a 100644
--- a/src/components/SmartClipboardButton.tsx
+++ b/src/components/SmartClipboardButton.tsx
@@ -20,11 +20,12 @@ export function SmartClipboardButton() {
}, [showSuccess]);
const getLaunchOptionText = async (): Promise<string> => {
- const result = await getLaunchOption();
- if (!result.launch_option) {
- throw new Error("Launch option is unavailable");
+ try {
+ const result = await getLaunchOption();
+ return result.launch_option || "~/lsfg %command%";
+ } catch (error) {
+ return "~/lsfg %command%";
}
- return result.launch_option;
};
const copyToClipboard = async () => {
diff --git a/src/components/UsageInstructions.tsx b/src/components/UsageInstructions.tsx
index 02d0eb3..5f032b8 100644
--- a/src/components/UsageInstructions.tsx
+++ b/src/components/UsageInstructions.tsx
@@ -1,31 +1,6 @@
-import { useEffect, useState } from "react";
import { PanelSectionRow } from "@decky/ui";
-import { getLaunchOption } from "../api/lsfgApi";
export function UsageInstructions() {
- const [launchOption, setLaunchOption] = useState("~/lsfg %command%");
- const [launchExplanation, setLaunchExplanation] = useState(
- "The LSFG wrapper configures frame generation before launching the game."
- );
-
- useEffect(() => {
- let active = true;
-
- getLaunchOption()
- .then((result) => {
- if (!active) return;
- if (result.launch_option) setLaunchOption(result.launch_option);
- if (result.explanation) setLaunchExplanation(result.explanation);
- })
- .catch(() => {
- // Keep the standard launch option visible if the backend is unavailable.
- });
-
- return () => {
- active = false;
- };
- }, []);
-
return (
<>
<PanelSectionRow>
@@ -72,20 +47,7 @@ export function UsageInstructions() {
textAlign: "center"
}}
>
- <strong>{launchOption}</strong>
- </div>
- </PanelSectionRow>
-
- <PanelSectionRow>
- <div
- style={{
- fontSize: "11px",
- lineHeight: "1.3",
- opacity: "0.7",
- marginTop: "4px"
- }}
- >
- {launchExplanation}
+ <strong>~/lsfg %command%</strong>
</div>
</PanelSectionRow>
@@ -98,7 +60,7 @@ export function UsageInstructions() {
marginTop: "8px"
}}
>
- The configuration is stored in ~/.config/lsfg-vk/conf.toml and hot-reloads while games are running.
+The configuration is stored in ~/.config/lsfg-vk/conf.toml and hot-reloads while games are running.
</div>
</PanelSectionRow>
</>