Skip to content

Commit

Permalink
fix(wallet-mobile): actually fix ledger modal colors (#3655)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorbuedo authored Sep 25, 2024
1 parent 8d851f4 commit 68e6051
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion apps/wallet-mobile/src/components/Button/Button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export const Button = (props: ButtonProps) => {
outlineOnLight,
iconImage,
withoutBackground,
shelleyTheme,
shelleyTheme = true,
mainTheme,
outlineShelley,
textStyles,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ const LedgerTransportSwitchView = ({onSelectUSB, onSelectBLE}: Props) => {

<Button
outlineOnLight
shelleyTheme
onPress={() => request()}
title={strings.bluetoothButton}
testID="connectWithBLEButton"
Expand All @@ -42,6 +43,7 @@ const LedgerTransportSwitchView = ({onSelectUSB, onSelectBLE}: Props) => {

<Button
outlineOnLight
shelleyTheme
onPress={onSelectUSB}
title={strings.usbButton}
disabled={!isUSBSupported || !HARDWARE_WALLETS.LEDGER_NANO.ENABLE_USB_TRANSPORT}
Expand Down

0 comments on commit 68e6051

Please sign in to comment.