Skip to content

Commit

Permalink
feat: SJIP-572 code review fix
Browse files Browse the repository at this point in the history
  • Loading branch information
celinepelletier committed Oct 27, 2023
1 parent b2cf58c commit e3cf25b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/db/dal/userSets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,5 @@ export const share = async (id: string, keycloak_id: string): Promise<boolean> =
},
);

return !!updatedCount[0];
return !!updatedCount?.[0];
};

0 comments on commit e3cf25b

Please sign in to comment.