Skip to content

Commit

Permalink
return to normal timer
Browse files Browse the repository at this point in the history
  • Loading branch information
Nasar165 committed May 5, 2024
1 parent fa57c70 commit 4217c64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/components/meter.value.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export default function MeterValue({

useEffect(() => {
console.info('start interval');
const id = setInterval(onClick, DEFAULT_INTERVAL - 19000);
const id = setInterval(onClick, DEFAULT_INTERVAL);
return () => {
console.info('clean up interval');
clearInterval(id);
Expand Down

0 comments on commit 4217c64

Please sign in to comment.