Compare commits

...

2 Commits

Author SHA1 Message Date
eewing c10396c2b4 port change 2025-12-14 13:39:17 -06:00
eewing e1ff581f0a fix 2025-12-14 13:33:43 -06:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -134,7 +134,7 @@
<button id="employeeInfoTab" class="border-indigo-500 text-indigo-600 whitespace-nowrap py-2 px-1 border-b-2 font-medium text-sm active-tab">
Employee Info
</button>
<button id="employeeReportsTab" class="border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 whitespace-nowrap py-2 px-1 border-b-2 font-medium text-sm" id="employeeId" style="display: none;">
<button id="employeeReportsTab" class="border-transparent text-gray-500 hover:text-gray-700 hover:border-gray-300 whitespace-nowrap py-2 px-1 border-b-2 font-medium text-sm" style="display: none;">
Reports
</button>
</nav>
+1 -1
View File
@@ -19,7 +19,7 @@ app.use('/*', serveStatic({ root: './public' }));
// Fallback to index.html for SPA routing
app.get('*', serveStatic({ path: './public/index.html' }));
const port = parseInt(process.env.PORT || '3000');
const port = parseInt(process.env.PORT || '3050');
console.log(`🚀 Server running on http://localhost:${port}`);