Skip to content

Commit 1d53595

Browse files
authored
fix: gas item selected style error (#3148)
1 parent 6585750 commit 1d53595

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
lines changed

packages/app/ios/Podfile.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PODS:
22
- boost (1.76.0)
33
- CocoaAsyncSocket (7.6.5)
44
- DoubleConversion (1.1.6)
5-
- EXApplication (5.1.1):
5+
- EXApplication (5.2.0):
66
- ExpoModulesCore
77
- EXAV (13.3.0):
88
- ExpoModulesCore
@@ -1050,7 +1050,7 @@ SPEC CHECKSUMS:
10501050
boost: 57d2868c099736d80fcd648bf211b4431e51a558
10511051
CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99
10521052
DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54
1053-
EXApplication: d8f53a7eee90a870a75656280e8d4b85726ea903
1053+
EXApplication: 45c662ace096520d412e8f2c956482c8ffac1436
10541054
EXAV: c661e742e2ee1986f5a6a030b48d9d3a3507d2f0
10551055
EXBarCodeScanner: 28ad66f3f57c8ae00f988956835ab472688643ca
10561056
EXConstants: 29269f841ed8786d483b753021953264ac04818f
@@ -1185,4 +1185,4 @@ SPEC CHECKSUMS:
11851185

11861186
PODFILE CHECKSUM: 378641444e16b53374eb08f9204e4c8f404b5843
11871187

1188-
COCOAPODS: 1.12.1
1188+
COCOAPODS: 1.11.3

packages/components/src/RadioBox/RadioBox.tsx

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -35,25 +35,21 @@ const RadioBox: FC<RadioBoxProps> = ({
3535
const [isFocused, setFocused] = useState(false);
3636

3737
let brColor = 'border-default';
38+
let bgColor = 'transparent';
3839
if (isChecked) {
3940
if (isDisabled) {
4041
brColor = 'action-primary-activate-disabled';
4142
} else {
4243
brColor = 'action-primary-default';
4344
}
45+
bgColor = 'surface-selected';
4446
} else if (isDisabled) {
47+
bgColor = 'surface-disabled';
4548
brColor = 'border-disabled';
4649
} else {
4750
brColor = 'border-default';
4851
}
4952

50-
let bgColor = 'action-secondary-default';
51-
if (isDisabled) {
52-
bgColor = 'action-secondary-disabled';
53-
} else {
54-
bgColor = 'action-secondary-default';
55-
}
56-
5753
return (
5854
<Pressable
5955
onFocus={() => setFocused(true)}

packages/kit/src/views/Send/modals/SendEditFee/SendEditFeeStandardForm.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ const presetItemStyle = {
2626
paddingBottom: '4px',
2727
alignItems: 'center',
2828
height: '64px',
29-
bg: 'transparent',
3029
};
3130

3231
const customItemStyle = {

0 commit comments

Comments
 (0)