From c935b2a35270bf95aa815f86b30368fe8aa6f53e Mon Sep 17 00:00:00 2001
From: Kris Powers <85710701+KrisPowers@users.noreply.github.com>
Date: Thu, 14 May 2026 20:26:25 -0400
Subject: [PATCH 1/3] Apply suggested fix to
installer/linux/frontend/src/App.tsx from Copilot Autofix
Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
---
installer/linux/frontend/src/App.tsx | 14 ++++++++------
1 file changed, 8 insertions(+), 6 deletions(-)
diff --git a/installer/linux/frontend/src/App.tsx b/installer/linux/frontend/src/App.tsx
index a9ccb757..4c3f1851 100644
--- a/installer/linux/frontend/src/App.tsx
+++ b/installer/linux/frontend/src/App.tsx
@@ -112,12 +112,14 @@ export default function App() {
-
+ {(phase === 'installing' || phase === 'done') && (
+
+ )}
)
From f3bdfd84cddad791485ee4da5e05c6a2553ac4d6 Mon Sep 17 00:00:00 2001
From: Kris Powers <85710701+KrisPowers@users.noreply.github.com>
Date: Thu, 14 May 2026 20:26:26 -0400
Subject: [PATCH 2/3] Apply suggested fix to
installer/linux/frontend/src/App.tsx from Copilot Autofix
Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
---
installer/linux/frontend/src/App.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/installer/linux/frontend/src/App.tsx b/installer/linux/frontend/src/App.tsx
index 4c3f1851..257571cb 100644
--- a/installer/linux/frontend/src/App.tsx
+++ b/installer/linux/frontend/src/App.tsx
@@ -30,7 +30,7 @@ export default function App() {
setProgress(0)
setStatusMsg('Starting…')
try {
- await Install(createShortcut)
+ await Install(createShortcut, installPlugins)
} catch (e: unknown) {
setError(String(e))
setPhase('error')
From 53965ab0482a342b2f0eed05baca0b8dde973ee5 Mon Sep 17 00:00:00 2001
From: Kris Powers <85710701+KrisPowers@users.noreply.github.com>
Date: Thu, 14 May 2026 20:28:13 -0400
Subject: [PATCH 3/3] Potential fix for pull request finding 'Superfluous
trailing arguments'
Co-authored-by: Copilot Autofix powered by AI <223894421+github-code-quality[bot]@users.noreply.github.com>
---
installer/linux/frontend/src/App.tsx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/installer/linux/frontend/src/App.tsx b/installer/linux/frontend/src/App.tsx
index 257571cb..4c3f1851 100644
--- a/installer/linux/frontend/src/App.tsx
+++ b/installer/linux/frontend/src/App.tsx
@@ -30,7 +30,7 @@ export default function App() {
setProgress(0)
setStatusMsg('Starting…')
try {
- await Install(createShortcut, installPlugins)
+ await Install(createShortcut)
} catch (e: unknown) {
setError(String(e))
setPhase('error')