fix: make time wheel accept 00 via numeric comparison… #222
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
The time wheel on web couldn’t select 00 because the wheel compared values with strict equality between mixed types (e.g. "00" vs 0). This PR normalises comparisons to numbers and always emits numeric values, so "00", "0", and 0 are treated the same.
Problem
What changed
Why this approach
Notes
(Optional) If you’d like, I can follow up with a type-only PR to narrow setValue?: (value: number) => void since we now always emit numbers.
Closes #210
Testing
Manual Testing

00:00 time can now be selected via the wheels on the web as shown here:
Automated Unit Tests
Added web wheel tests to ensure ‘00’ is selectable—simulate a one-step drag via a mocked PanResponder and assert it emits numeric 0 (and no-op when unchanged), covering mixed string/number values to guard against regressions.