Skip to content

Commit

Permalink
comment out interval
Browse files Browse the repository at this point in the history
  • Loading branch information
ponderingdemocritus committed Dec 11, 2024
1 parent eec2bc2 commit c87623f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions client/src/hooks/store/useBlockchainStore.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ export const useFetchBlockchainData = () => {

fetchBlockchainTimestamp(); // Initial fetch

const intervalId = setInterval(fetchBlockchainTimestamp, 10000);
// const intervalId = setInterval(fetchBlockchainTimestamp, 10000);

return () => {
clearInterval(intervalId);
};
// return () => {
// clearInterval(intervalId);
// };
}, []);
};

0 comments on commit c87623f

Please sign in to comment.