Skip to content

Commit

Permalink
Fix join balance check limit
Browse files Browse the repository at this point in the history
  • Loading branch information
lindlof committed Dec 9, 2020
1 parent 34bb54c commit b627f9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const App: React.FC = () => {
Game.defaults,
);
const account = useAccount(client, game);
const lowBalance = account && account.balance < 20;
const lowBalance = account && account.balance < 11;
const { enqueueSnackbar } = useSnackbar();
routeUrl(client, setGame, enqueueSnackbar);

Expand Down

0 comments on commit b627f9a

Please sign in to comment.