Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: logo sizes #237

Merged
merged 1 commit into from
Aug 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/components/BlockedScenarios/BlockedScenarios.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const BlockedScenarios = ({ type }: { type: string }) => {
<Localize i18n_default_text='To use Deriv P2P, switch to your real USD account.' />
</Text>
),
icon: <P2pUnavailable />,
icon: <P2pUnavailable height={iconSize} width={iconSize} />,
title: (
<Text weight='bold'>
<Localize i18n_default_text='Cryptocurrencies not supported' />
Expand All @@ -82,7 +82,7 @@ const BlockedScenarios = ({ type }: { type: string }) => {
<Localize i18n_default_text='Please switch to Real USD account to access the Deriv P2P marketplace.' />
</Text>
),
icon: <P2pUnavailable />,
icon: <P2pUnavailable height={iconSize} width={iconSize} />,
title: (
<Text weight='bold'>
<Localize i18n_default_text='You are using a demo account' />
Expand All @@ -100,7 +100,7 @@ const BlockedScenarios = ({ type }: { type: string }) => {
<Localize i18n_default_text='Please create a Real USD account to access the Deriv P2P marketplace.' />
</Text>
),
icon: <P2pUnavailable />,
icon: <P2pUnavailable height={iconSize} width={iconSize} />,
title: (
<Text weight='bold'>
<Localize i18n_default_text='You have no Real USD account' />
Expand Down
Loading