We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 63a2bd4 commit c17aaeaCopy full SHA for c17aaea
2 files changed
src/page/other/HumanizedValueInput.tsx
@@ -171,7 +171,6 @@ function parseDurationInput(input: string): number | null {
171
let match: RegExpExecArray | null
172
let matched = false
173
174
- // eslint-disable-next-line no-cond-assign
175
while ((match = regex.exec(trimmed)) !== null) {
176
const value = parseFloat(match[1] ?? '')
177
const unitStr = match[2] ?? ''
src/utils/format/humanizedValue.ts
@@ -82,7 +82,6 @@ export function parseDuration(input: string): number | null {
82
83
84
85
86
87
88
0 commit comments