Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into feature/tx-review
Browse files Browse the repository at this point in the history
  • Loading branch information
banklesss committed Sep 25, 2024
2 parents 9a13ff9 + ab08361 commit 65c1ce4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
2 changes: 1 addition & 1 deletion apps/wallet-mobile/src/WalletNavigator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ const useStyles = () => {

const colors = {
active: color.text_primary_max,
inactive: color.text_gray_medium,
inactive: color.text_gray_low,
background: color.bg_color_max,
divider: color.gray_200,
}
Expand Down
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 @@ -107,8 +107,6 @@ export const Overview = () => {
</View>

<Spacer height={16} />

<View style={styles.divider} />
</View>
</Accordion>

Expand Down Expand Up @@ -168,11 +166,6 @@ const useStyles = () => {
...atoms.font_semibold,
color: color.gray_900,
},
divider: {
...atoms.flex_1,
height: 1,
backgroundColor: color.gray_200,
},
copyButton: {
...atoms.flex_1,
...atoms.flex_row_reverse,
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 65c1ce4

Please sign in to comment.