Skip to content

Commit 2c39e2b

Browse files
committed
style(linting): Fix error
1 parent 899c244 commit 2c39e2b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/composables/useOutputDuration.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
export function useOutputDuration() {
22
function durationToMinutes(duration: string): number {
3-
let hours = 0; let minutes = 0
3+
let hours = 0
4+
let minutes = 0
5+
46
const lowerDuration = duration.toLowerCase()
57

68
if (lowerDuration.includes(':')) {

0 commit comments

Comments
 (0)