Skip to content

Commit

Permalink
chore(ceremony): lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Swepool committed Oct 30, 2024
1 parent 69aa5c1 commit b8ef764
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ceremony/src/lib/utils/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export function formatWaitTime(minutes: number) {
const hours = Math.floor((minutes % (24 * 60)) / 60)
const remainingMinutes = Math.round(minutes % 60)

const parts = []
const parts: Array<string> = []

if (weeks > 0) {
parts.push(`${weeks} week${weeks !== 1 ? "s" : ""}`)
Expand Down

0 comments on commit b8ef764

Please sign in to comment.