Skip to content

Commit

Permalink
prettier fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Aish1990 committed Aug 2, 2024
1 parent b74d9e1 commit 0cde16d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/drec-api/src/pods/device/device.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,10 @@ export class DeviceService {
pagenumber: number,
): Promise<any> {
this.logger.verbose(`With in getOrganizationDevices`);
if (Object.keys(filterDto).length != 0 && (pagenumber != null || pagenumber != undefined)) {
if (
Object.keys(filterDto).length != 0 &&
(pagenumber != null || pagenumber != undefined)
) {
const limit = 20;
const query = await this.getFilteredQuery(filterDto);
let where: any = query.where;
Expand Down

0 comments on commit 0cde16d

Please sign in to comment.