dlhg / burgerclicker

0 stars 0 forks source link

when totalBurgersProduced >= 1 mil, store items revert to hidden #7

Closed dlhg closed 1 year ago

dlhg commented 1 year ago

this is because formatNumber function is formatting numbers bigger than 1 mil as 1 mil and not 1000000, need to update conditional rendering logic in the store

dlhg commented 1 year ago

fixed by adding a totalBurgersProducedUnformatted state variable and having conditional render checks depend on that instead