From 0220206abf564dd299f1870224c3667a50e60f33 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Tue, 25 Nov 2025 09:07:20 +0000
Subject: [PATCH 1/2] Initial plan
From 501ebe8d84cd3683fb0eb99a53fd30cd13721b7b Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Tue, 25 Nov 2025 09:12:17 +0000
Subject: [PATCH 2/2] Fix syntax error in renderLogContent function and add
null check for store in cleanup
Co-authored-by: jonathanbossenger <180629+jonathanbossenger@users.noreply.github.com>
---
main/index.js | 2 ++
renderer/src/App.js | 7 -------
2 files changed, 2 insertions(+), 7 deletions(-)
diff --git a/main/index.js b/main/index.js
index f07e987..49c71ad 100644
--- a/main/index.js
+++ b/main/index.js
@@ -417,6 +417,8 @@ const cleanup = async () => {
watcher = null;
}
+ if (!store) return;
+
const originalSettings = store.get('originalDebugSettings');
if (originalSettings && originalSettings.directory) {
const configPath = path.join(originalSettings.directory, 'wp-config.php');
diff --git a/renderer/src/App.js b/renderer/src/App.js
index da0fca7..bee440d 100644
--- a/renderer/src/App.js
+++ b/renderer/src/App.js
@@ -164,13 +164,6 @@ function App() {
}
});
- return filteredEntries.map((entry, index) => {
-
- return filteredEntries.map(({ entry, originalIndex }, idx) => {
- return filteredEntries.map((entry, idx) => {
- return ;
- });
- };
return filteredEntries.map((entry, idx) => {
return ;
});