From 89576572f53c2419e28627c1561010c382f97a50 Mon Sep 17 00:00:00 2001 From: zeppi Date: Sat, 3 Jul 2021 14:32:06 -0400 Subject: [PATCH] more stripe only on web --- ui/page/settings/view.jsx | 3 ++- ui/page/wallet/view.jsx | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ui/page/settings/view.jsx b/ui/page/settings/view.jsx index 11e207b51..b3e0ca75b 100644 --- a/ui/page/settings/view.jsx +++ b/ui/page/settings/view.jsx @@ -205,7 +205,7 @@ class SettingsPage extends React.PureComponent { }} className="card-stack" > - + {/* @if TARGET='web' */} { } /> + {/* @endif */} } /> {homepages && Object.keys(homepages).length > 1 && ( diff --git a/ui/page/wallet/view.jsx b/ui/page/wallet/view.jsx index 7664b02e8..720bcf6b5 100644 --- a/ui/page/wallet/view.jsx +++ b/ui/page/wallet/view.jsx @@ -9,7 +9,7 @@ import Spinner from 'component/spinner'; import YrblWalletEmpty from 'component/yrblWalletEmpty'; type Props = { - history: { action: string, push: string => void, replace: string => void }, + history: { action: string, push: (string) => void, replace: (string) => void }, location: { search: string, pathname: string }, totalBalance: ?number, }; @@ -34,7 +34,9 @@ const WalletPage = (props: Props) => { ) : (
+ {/* @if TARGET='web' */} + {/* @endif */}
)}