Skip to content

Commit e52afef

Browse files
committed
screencast
1 parent 3320a33 commit e52afef

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
> A payment gateway for any `IERC20` tokens (USDT) with testbed on top of [TestERC20](https://stackoverflow.com/questions/75043524/minimal-erc20-contract-for-testing/75043525#75043525) token
44
5+
![screencast.git](./assets/screencast.gif)
6+
57
## Usage
68

79
1. Run `npm run start:ganache` in separated terminal

assets/screencast.gif

2.88 MB
Loading

packages/client/src/components/App.tsx

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import { prefetch, Switch, unload } from 'react-declarative';
66
import Box from '@mui/material/Box';
77
import LinearProgress from '@mui/material/LinearProgress';
88
import CircularProgress from '@mui/material/CircularProgress';
9+
import Typography from '@mui/material/Typography';
910
import CssBaseline from '@mui/material/CssBaseline';
1011

1112
import routes from '../config/routes';
@@ -25,11 +26,22 @@ const Loader = () => (
2526
display: "flex",
2627
alignItems: "center",
2728
justifyContent: "center",
29+
flexDirection: "column",
30+
gap: "15px",
2831
zIndex: 99999,
2932
background: (theme) => theme.palette.background.paper,
3033
}}
3134
>
3235
<CircularProgress />
36+
<Typography
37+
variant="body1"
38+
sx={{
39+
maxWidth: "175px",
40+
textAlign: "center",
41+
}}
42+
>
43+
Please approve MetaMask confirmation
44+
</Typography>
3345
</Box>
3446
);
3547

0 commit comments

Comments
 (0)