This commit is contained in:
Philipinho
2025-06-14 21:50:48 -07:00
parent e46a7f1c06
commit 61395d1334
2 changed files with 2 additions and 2 deletions

View File

@ -55,7 +55,7 @@ export class GroupUserService {
.where('users.workspaceId', '=', workspaceId) .where('users.workspaceId', '=', workspaceId)
.execute(); .execute();
if (validUsers.length <= 0) return; if (validUsers.length === 0) return;
// prepare users to add to group // prepare users to add to group
const groupUsersToInsert = []; const groupUsersToInsert = [];