remove conversion
This commit is contained in:
parent
e286fe89b3
commit
2b92bbf9f5
@ -49,7 +49,7 @@ export default async function AdminPage() {
|
||||
const currentPrintJobs = printJobs.filter((job) => {
|
||||
if (job.aborted) return false;
|
||||
|
||||
const endAt = new Date(job.startAt).getTime() + job.durationInMinutes * 1000 * 60;
|
||||
const endAt = job.startAt.getTime() + job.durationInMinutes * 1000 * 60;
|
||||
|
||||
return endAt > currentDate.getTime();
|
||||
});
|
||||
|
Loading…
x
Reference in New Issue
Block a user