diff --git a/src/features/auth/api.js b/src/features/auth/api.js index 2372296..67f90b6 100644 --- a/src/features/auth/api.js +++ b/src/features/auth/api.js @@ -837,7 +837,7 @@ async function handleAdminCreateUser(request) { } const userId = generateId(); - const hasPassword = password && typeof password === 'string' && password.length > 0; + const hasPassword = typeof password === 'string' && password.length > 0; const user = await create('zen_auth_users', { id: userId,