Skip to content

Commit

Permalink
chore(components): update throttling value for time picker
Browse files Browse the repository at this point in the history
  • Loading branch information
rhahao committed Dec 13, 2024
1 parent eb6ed21 commit 6e6ced3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/time_picker_slider/useGestureControl.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function useGestureControl({
} else if (normalizedDelta < 0) {
onDecrement();
}
}, 20); // Throttle wheel events
}, 10); // Throttle wheel events
},
[onIncrement, onDecrement]
);
Expand Down

0 comments on commit 6e6ced3

Please sign in to comment.