update prettier config

This commit is contained in:
m5r
2021-08-01 20:04:04 +08:00
parent fdf9df243b
commit 7acbca65ce
33 changed files with 65 additions and 52 deletions

View File

@ -21,7 +21,7 @@ const fetchCallsQueue = Queue<Payload>("api/queue/fetch-calls", async ({ custome
}),
]);
const calls = [...callsSent, ...callsReceived].sort(
(a, b) => a.dateCreated.getTime() - b.dateCreated.getTime()
(a, b) => a.dateCreated.getTime() - b.dateCreated.getTime(),
);
await insertCallsQueue.enqueue(
@ -31,7 +31,7 @@ const fetchCallsQueue = Queue<Payload>("api/queue/fetch-calls", async ({ custome
},
{
id: `insert-calls-${customerId}`,
}
},
);
});

View File

@ -28,5 +28,5 @@ export default resolver.pipe(
hasMore,
count,
};
}
},
);