Syntax fix

This commit is contained in:
zomars 2022-11-11 11:59:51 -07:00
parent ca093f6307
commit 1671836b5c

View File

@ -4,5 +4,4 @@ export default function findDurationType(value: number) {
if (value % MINUTES_IN_DAY === 0) return "days";
if (value % MINUTES_IN_HOUR === 0) return "hours";
return "minutes";
}
}