Skip to content

Commit 7ba632f

Browse files
committed
update lock file
1 parent 193619a commit 7ba632f

File tree

3 files changed

+30
-2
lines changed

3 files changed

+30
-2
lines changed

examples/react/useThrottledState/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function App() {
88

99
// wrapper around useThrottler and useState
1010
const [throttledCount, setThrottledCount] = useThrottledState(instantCount, {
11-
wait: 500,
11+
wait: 1000,
1212
})
1313

1414
function increment() {

examples/react/useThrottledValue/src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ function App() {
1212

1313
// wrapper around useThrottler, useState, and useEffect that watches instantCount and throttles it
1414
const [throttledCount] = useThrottledValue(instantCount, {
15-
wait: 500,
15+
wait: 1000,
1616
})
1717

1818
return (

pnpm-lock.yaml

Lines changed: 28 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)