summaryrefslogtreecommitdiff
path: root/src/components/ResultDisplay.tsx
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2026-04-05 20:29:56 -0400
committerGitHub <noreply@github.com>2026-04-05 20:29:56 -0400
commit47e7e2610b44809e13bea6bad7f1345fe6f58fa3 (patch)
tree669108810d1e8cae084dc658f74c740366bd464d /src/components/ResultDisplay.tsx
parentef469a8036e3b3f129a753dad4cf04fad3ca92f7 (diff)
parentb8eed9a4f3d98d887a9cc8f18b821d6a2af4598d (diff)
downloadDecky-Framegen-47e7e2610b44809e13bea6bad7f1345fe6f58fa3.tar.gz
Decky-Framegen-47e7e2610b44809e13bea6bad7f1345fe6f58fa3.zip
Merge pull request #186 from xXJSONDeruloXx/opti-090-finalHEADmain
Opti 090 final
Diffstat (limited to 'src/components/ResultDisplay.tsx')
-rw-r--r--src/components/ResultDisplay.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/ResultDisplay.tsx b/src/components/ResultDisplay.tsx
index bcd66c0..b54e41d 100644
--- a/src/components/ResultDisplay.tsx
+++ b/src/components/ResultDisplay.tsx
@@ -19,13 +19,13 @@ export const ResultDisplay: FC<ResultDisplayProps> = ({ result }) => {
<div style={isSuccess ? STYLES.statusInstalled : STYLES.statusNotInstalled}>
{isSuccess ? (
<>
- ✅ {result.output?.includes("uninstall") || result.output?.includes("remov")
+ {result.output?.includes("uninstall") || result.output?.includes("remov")
? "OptiScaler mod removed successfully"
: "OptiScaler mod installed successfully"}
</>
) : (
<>
- ❌ <strong>Error:</strong> {result.message || "Operation failed"}
+ <strong>Error:</strong> {result.message || "Operation failed"}
</>
)}
{result.output && !isSuccess && (