Skip to content

Commit 7f812e2

Browse files
committed
Remove duplicate case
1 parent b01b350 commit 7f812e2

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

src/utils.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -102,13 +102,6 @@ export const formatTimecode = ({ format, time }) => {
102102
case 'mm:ss':
103103
return `${pad(minutes + (hours * 60))}:${pad(seconds)}`;
104104

105-
case 'H:?mm:ss':
106-
if (hours) {
107-
return `${hours}:${pad(minutes)}:${pad(seconds)}`;
108-
}
109-
110-
return `${pad(minutes)}:${pad(seconds)}`;
111-
112105
case 'H:?m:ss':
113106
default:
114107
if (hours) {

0 commit comments

Comments
 (0)