summaryrefslogtreecommitdiff
path: root/src/components/SteamGamePatcher.tsx
diff options
context:
space:
mode:
authorxXJSONDeruloXx <danielhimebauch@gmail.com>2026-04-03 10:10:36 -0400
committerxXJSONDeruloXx <danielhimebauch@gmail.com>2026-04-03 10:10:36 -0400
commitd845c74d039fd08449ce723d25958cd96a72ee06 (patch)
tree1bbf3a7bb87418f475bf47af174fa8158b34edb7 /src/components/SteamGamePatcher.tsx
parent3d813ea87335298be5a47de3441f410651851b71 (diff)
downloadDecky-Framegen-d845c74d039fd08449ce723d25958cd96a72ee06.tar.gz
Decky-Framegen-d845c74d039fd08449ce723d25958cd96a72ee06.zip
chore: remove all emojis from source files
Diffstat (limited to 'src/components/SteamGamePatcher.tsx')
-rw-r--r--src/components/SteamGamePatcher.tsx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/components/SteamGamePatcher.tsx b/src/components/SteamGamePatcher.tsx
index 5947f01..06c373c 100644
--- a/src/components/SteamGamePatcher.tsx
+++ b/src/components/SteamGamePatcher.tsx
@@ -159,10 +159,10 @@ export function SteamGamePatcher({ dllName }: SteamGamePatcherProps) {
setSteamLaunchOptions(Number(selectedAppId), targetCommand);
setLaunchOptions(targetCommand);
setResultMessage(
- `✅ Launch options set for ${selectedGame?.name ?? selectedAppId}`
+ `Launch options set for ${selectedGame?.name ?? selectedAppId}`
);
} catch (e) {
- setResultMessage(`❌ ${e instanceof Error ? e.message : String(e)}`);
+ setResultMessage(`Error: ${e instanceof Error ? e.message : String(e)}`);
} finally {
setBusy(false);
}
@@ -176,10 +176,10 @@ export function SteamGamePatcher({ dllName }: SteamGamePatcherProps) {
setSteamLaunchOptions(Number(selectedAppId), stripped);
setLaunchOptions(stripped);
setResultMessage(
- `✅ Removed fgmod from ${selectedGame?.name ?? selectedAppId}`
+ `Removed fgmod from ${selectedGame?.name ?? selectedAppId}`
);
} catch (e) {
- setResultMessage(`❌ ${e instanceof Error ? e.message : String(e)}`);
+ setResultMessage(`Error: ${e instanceof Error ? e.message : String(e)}`);
} finally {
setBusy(false);
}