Skip to content

Commit

Permalink
Patch timing on frontend (typo)
Browse files Browse the repository at this point in the history
  • Loading branch information
b-j-roberts committed Jun 11, 2024
1 parent c6bcfb4 commit d01335c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -191,9 +191,9 @@ function App() {
fetchGetLastPlacedPixel();
}, [queryAddress]);

const updateInterval = 120000; // 1 second
const updateInterval = 1000; // 1 second
// TODO: make this a config
const timeBetweenPlacements = 1000; // 2 minutes
const timeBetweenPlacements = 120000; // 2 minutes
const [basePixelTimer, setBasePixelTimer] = useState('XX:XX');
useEffect(() => {
const updateBasePixelTimer = () => {
Expand Down

0 comments on commit d01335c

Please sign in to comment.