Skip to content

Commit

Permalink
fix(moderation): validate user as internal by default
Browse files Browse the repository at this point in the history
  • Loading branch information
douglasduteil committed Oct 9, 2024
1 parent 4eb6a52 commit 265eddc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export function IsUserExternalMember({ pg }: MonCompteProDatabaseCradle) {
),
});

return user_organization?.is_external ?? true;
return user_organization?.is_external ?? false;
};
}

Expand Down

0 comments on commit 265eddc

Please sign in to comment.