Skip to content

Commit 4169c53

Browse files
committed
fix: check
1 parent 1235708 commit 4169c53

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/neuron-ui/src/utils/hooks/useGetCountDownAndFeeRateStats.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const useGetCountDownAndFeeRateStats = ({ seconds = 30, interval = 1000 }: Count
1515
suggestFeeRate: number
1616
}>({ suggestFeeRate: MEDIUM_FEE_RATE })
1717

18-
const handleGetFeeRateStatis = useCallback(() => {
18+
const handleGetFeeRateStatistics = useCallback(() => {
1919
getFeeRateStatistics()
2020
.then(res => {
2121
const { median } = res ?? {}
@@ -50,7 +50,7 @@ const useGetCountDownAndFeeRateStats = ({ seconds = 30, interval = 1000 }: Count
5050

5151
useEffect(() => {
5252
if (countDown === seconds) {
53-
handleGetFeeRateStatis()
53+
handleGetFeeRateStatistics()
5454
}
5555
}, [countDown, seconds])
5656

0 commit comments

Comments
 (0)