chore: run prettier format

This commit is contained in:
Julian Tölle 2021-05-25 16:01:55 +02:00
parent b6c7c9e16d
commit f56548e432
12 changed files with 95 additions and 95 deletions

View file

@ -79,8 +79,9 @@ export class ReportsService {
const { eachOfInterval, isSame } = timeframeToDateFns[timeFrame];
const reportItems = eachOfInterval(interval).map((date) => {
const count = listens.filter((listen) => isSame(date, listen.playedAt))
.length;
const count = listens.filter((listen) =>
isSame(date, listen.playedAt)
).length;
return { date: formatISO(date), count };
});