Skip to content

Commit

Permalink
prettier fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Aish1990 committed Aug 8, 2024
1 parent f579d6e commit 9d9e64e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions apps/drec-api/src/pods/organization/organization.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -537,9 +537,12 @@ export class OrganizationService {
query.andWhere(baseQuery, { organizationName: `%${organizationName}%` });
}
if (organizationType) {
query.andWhere(`organization.organizationType NOT LIKE :organizationType`, {
organizationType: `%${organizationType}%`,
});
query.andWhere(
`organization.organizationType NOT LIKE :organizationType`,
{
organizationType: `%${organizationType}%`,
},
);
}
return query;
}
Expand Down

0 comments on commit 9d9e64e

Please sign in to comment.