File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed
apps/ledger-live-desktop/src/renderer/screens/exchange Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ " ledger-live-desktop " : minor
3+ ---
4+
5+ Transparent background for buy/sell
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ import semver from "semver";
33import { useLocation , useNavigate , useParams } from "react-router" ;
44import { useTranslation } from "react-i18next" ;
55import { useSelector } from "LLD/hooks/redux" ;
6- import Card from "~/renderer/components/Box/Card" ;
76import {
87 counterValueCurrencySelector ,
98 developerModeSelector ,
@@ -35,6 +34,7 @@ import { NetworkErrorScreen } from "~/renderer/components/Web3AppWebview/Network
3534import { ProviderInterstitial } from "LLD/components/ProviderInterstitial" ;
3635import PageHeader from "LLD/components/PageHeader" ;
3736import { getWallet40HeaderKey } from "./helpers" ;
37+ import Box from "~/renderer/components/Box/Box" ;
3838
3939type ExchangeState = { account ?: string } | undefined ;
4040
@@ -108,12 +108,13 @@ const LiveAppExchange = ({ appId }: { appId: string }) => {
108108 }
109109
110110 const headerKey = getWallet40HeaderKey ( manifest . id ) ;
111+
111112 return (
112113 < >
113114 { shouldDisplayWallet40MainNav && headerKey ? (
114115 < PageHeader title = { t ( headerKey ) } onBack = { ( ) => navigate ( - 1 ) } />
115116 ) : null }
116- < Card
117+ < Box
117118 grow
118119 style = { {
119120 overflow : "hidden" ,
@@ -141,7 +142,7 @@ const LiveAppExchange = ({ appId }: { appId: string }) => {
141142 } }
142143 Loader = { providerInterstitialEnabled ? ProviderInterstitial : undefined }
143144 />
144- </ Card >
145+ </ Box >
145146 </ >
146147 ) ;
147148} ;
You can’t perform that action at this time.
0 commit comments