Skip to content

Commit 11cf4cd

Browse files
authored
Merge pull request #36 from Coding-Autopilot-System/chore/ecosystem-sync-184200
chore: resolve merge conflicts
2 parents d8863f5 + 0e7a572 commit 11cf4cd

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

dashboard/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ <h1>Promptimprover Swarm Dashboard</h1>
4141
.replace(/>/g, "&gt;")
4242
.replace(/"/g, "&quot;")
4343
.replace(/'/g, "&#039;");
44-
44+
4545
tr.innerHTML = `
4646
<td>${escapeHtml(fmtTime)}</td>
4747
<td>${escapeHtml(log.span_id || 'N/A')}</td>

dashboard/server.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ const PORT = 3000;
1111

1212
// Helper: read last N lines from trace file
1313
async function readLastLines(filePath, maxLines = 20) {
14-
if (!fs.existsSync(filePath)) return [];
1514
const stream = fs.createReadStream(filePath, { encoding: 'utf8' });
1615
let data = '';
1716
stream.on('data', chunk => { data += chunk; });

0 commit comments

Comments
 (0)