Companies are now listing properly

This commit is contained in:
2026-02-13 17:02:03 -06:00
parent 24d0c066fd
commit 628dc35dea
13 changed files with 123 additions and 15 deletions
+3 -1
View File
@@ -9,7 +9,9 @@ if (Bun.env.NODE_ENV == "development") setupEventDebugger();
// Refresh the internal list of companies every minute
await refreshCompanies();
setInterval(() => refreshCompanies, 60 * 1000);
setInterval(() => {
return refreshCompanies();
}, 60 * 1000);
Bun.serve({
port: PORT,