Skip to content

Commit

Permalink
fix: remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
omBratteng committed Aug 5, 2024
1 parent acc64eb commit cdbbcc8
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/common/vordr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,6 @@ export const checkWithVordr = async (
export const whereVordrFilter = (alias: string, userId?: string) =>
new Brackets((qb) => {
const vordrFilter = `COALESCE((${alias}.flags ->> 'vordr')::boolean, false) = false`;
console.log(isNullOrUndefined(userId));
isNullOrUndefined(userId)
? qb.where(vordrFilter)
: qb
Expand Down

0 comments on commit cdbbcc8

Please sign in to comment.