Skip to content

Commit

Permalink
Improve failure message
Browse files Browse the repository at this point in the history
  • Loading branch information
lindlof committed Dec 9, 2020
1 parent ce8e0f7 commit 5fabdb4
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 @@ -124,7 +124,7 @@ const playGame = async (
} catch (e) {
if (e.message !== 'ciphertext not set') {
setGame(undefined);
enqueueSnackbar('Fail. Try funding wallet?', { variant: 'error' });
enqueueSnackbar('Failed', { variant: 'error' });
console.log('playGame error', e);
return;
}
Expand Down

0 comments on commit 5fabdb4

Please sign in to comment.