Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
reuben.dysarz committed Aug 7, 2024
1 parent 42b29f2 commit 8a96ab3
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Time/TimeInput.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,8 @@ function TimeInput(
keyboardAppearance={theme.dark ? 'dark' : 'default'}
keyboardType="number-pad"
onChangeText={(e: string) => {
onInnerChange(Number(e));
}
}
onInnerChange(Number(e))
}}
{...rest}
/>
{onPress && inputType === inputTypes.picker ? (
Expand Down

0 comments on commit 8a96ab3

Please sign in to comment.