fix(server): remove unreachable ?? fallback after conditional guard

This commit is contained in:
2026-04-12 09:43:51 -04:00
committed by Pawla Abdul (Bot)
parent 6094081a71
commit cb15a87f64
+1 -1
View File
@@ -767,7 +767,7 @@ export async function startServer(): Promise<StartedServer> {
server,
host: config.host,
listenPort,
apiUrl: process.env.PAPERCLIP_API_URL ?? `http://${runtimeApiHost}:${listenPort}`,
apiUrl: process.env.PAPERCLIP_API_URL!,
databaseUrl: activeDatabaseConnectionString,
};
}