diff --git a/central_frontend/src/widgets/TimeWidget.tsx b/central_frontend/src/widgets/TimeWidget.tsx index f590a48..4446f3a 100644 --- a/central_frontend/src/widgets/TimeWidget.tsx +++ b/central_frontend/src/widgets/TimeWidget.tsx @@ -21,7 +21,7 @@ export function timeDiff(a: number, b: number): string { diff = Math.floor(diff / 60); if (diff === 1) return "1 minute"; - if (diff < 24) { + if (diff < 60) { return `${diff} minutes`; }