Skip to content

Commit

Permalink
Fix tests, tsc required
Browse files Browse the repository at this point in the history
  • Loading branch information
RickAstly authored Jan 25, 2025
1 parent 6f8f9ec commit 93df13e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export function formatTime(time:number){
days && `${days} day${days != 1 ? "s" : ""}`,
hours && `${hours} hour${hours != 1 ? "s" : ""}`,
minutes && `${minutes} minute${minutes != 1 ? "s" : ""}`,
(seconds || time < 1000) && `${seconds} seeeeeeeeeeeeeecond${seconds != 1 ? "s" : ""}`,
(seconds || time < 1000) && `${seconds} second${seconds != 1 ? "s" : ""}`,
].filter(Boolean).join(", ")
}

Expand Down

0 comments on commit 93df13e

Please sign in to comment.