From 5fabdb4464ab3c8ced84595d86c7e858873273a9 Mon Sep 17 00:00:00 2001 From: Mikael Lindlof Date: Wed, 9 Dec 2020 22:54:59 +0000 Subject: [PATCH] Improve failure message --- web/src/App.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/App.tsx b/web/src/App.tsx index 9db8854..8bf0c8a 100644 --- a/web/src/App.tsx +++ b/web/src/App.tsx @@ -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; }