Skip to content

Commit

Permalink
Fix service button funding condition
Browse files Browse the repository at this point in the history
  • Loading branch information
truemiller committed Mar 27, 2024
1 parent 852fe21 commit ccf9f02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ const Main = () => {

// Service button interval
useInterval(() => {
setServiceButtonState((prev) => ({ ...prev, isFunded: balance > 1 }));
setServiceButtonState((prev) => ({ ...prev, isFunded: balance >= 1 }));

if (services.length <= 0) {
setServiceButtonState((prev) => ({
Expand Down

0 comments on commit ccf9f02

Please sign in to comment.