53 Fix for type error that I don't see locally?!?

This commit is contained in:
Hendrik Belitz
2025-07-25 12:16:07 +02:00
parent f7437fadf9
commit 6fbbad600d
@@ -70,7 +70,7 @@ export class TenantAdminService {
const configuration = TenantAdminService.getConfigDefaults();
const urlParts = env.DATABASE_URL.split("/");
const urlParts = env.DATABASE_URL?.split("/") ?? [];
urlParts.pop();
const newTenant: InsertTenant = { ...request, longName: "", databaseUrl: "" };