Fix: Resolved Phase 5 UI rendering, updated server version to 1.2.0, and fixed critical volume mount path for server.cjs

This commit is contained in:
2026-01-03 14:05:27 +00:00
parent c013cfb02b
commit 2b1c5e45df
4 changed files with 12 additions and 2 deletions

View File

@@ -1466,7 +1466,7 @@ const App: React.FC = () => {
),
}}
>
{state.phase5Result || ''}
{state.phase5Result?.report || ''}
</ReactMarkdown>
</div>

View File

@@ -4,7 +4,7 @@ const cors = require('cors');
const path = require('path');
const fs = require('fs');
const VERSION = "1.0.0"; // Added for debugging and tracking
const VERSION = "1.2.0"; // Added for debugging and tracking
const app = express();
const port = 3005;