Skip to content

Commit

Permalink
fix sk time format
Browse files Browse the repository at this point in the history
  • Loading branch information
radoslavzeman committed Apr 21, 2023
1 parent 2544fe9 commit b72c652
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion next/utils/formatTimeString.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ export const formatTimeString = (time: string, locale: string) => {
return hoursInt > 12 ? `${hoursInt - 12}:${minutes} pm` : `${hoursInt}:${minutes} am`
}

return `${hours}:${minutes} h`
return `${hours}.${minutes} h`
}

0 comments on commit b72c652

Please sign in to comment.