update prettier config
This commit is contained in:
@ -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}`,
|
||||
}
|
||||
},
|
||||
);
|
||||
});
|
||||
|
||||
|
@ -28,5 +28,5 @@ export default resolver.pipe(
|
||||
hasMore,
|
||||
count,
|
||||
};
|
||||
}
|
||||
},
|
||||
);
|
||||
|
Reference in New Issue
Block a user