@kumori/aurora-backend-handler 1.1.60 → 1.1.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -189,7 +189,7 @@ export const updateTenant = async (tenant: Tenant, security: string) => {
|
|
|
189
189
|
await initializeGlobalWebSocketClient(security);
|
|
190
190
|
|
|
191
191
|
const hasNpmRegistry =
|
|
192
|
-
tenant.npmRegistry && tenant.npmRegistry
|
|
192
|
+
tenant.npmRegistry !== undefined && tenant.npmRegistry !== null;
|
|
193
193
|
const hasPlan = tenant.plan?.name;
|
|
194
194
|
|
|
195
195
|
const updateBody: Record<string, any> = {
|