diff --git a/client/src/app.jsx b/client/src/app.jsx index e56f3044..0d668980 100644 --- a/client/src/app.jsx +++ b/client/src/app.jsx @@ -36,9 +36,12 @@ events.setWs(ws); const App = () => ( - - - + {window.Stripe + ? + + + : + } ); diff --git a/client/src/components/shop.jsx b/client/src/components/shop.jsx index 08a79fad..283e78bc 100644 --- a/client/src/components/shop.jsx +++ b/client/src/components/shop.jsx @@ -48,9 +48,12 @@ function Shop(args) {

ยค {account.balance}

- - - + {window.stripe + ? + + + :
Please unblock Stripe to use the store
+ }
);