Skip to content

Commit

Permalink
Merge pull request #5 from leapwallet/0-button-fix
Browse files Browse the repository at this point in the history
fix: 0-button text style not working
  • Loading branch information
anhnch authored Mar 27, 2023
2 parents d7abe00 + 74a80fc commit f461720
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PinCode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ const PinCode = ({
</View>
<View style={defaultStyles.pinNumberRow}>
<View style={[defaultStyles.button, { width: 60, height: 60 }]}></View>
<PinButton value={'0'} disabled={buttonsDisabled} style={buttonStyle} onPress={onPinButtonPressed} />
<PinButton value={'0'} disabled={buttonsDisabled} style={buttonStyle} textStyle={styles?.enter?.buttonText} onPress={onPinButtonPressed} />
<PinButton value={'delete'} disabled={buttonsDisabled}
backSpace={options?.backSpace} backSpaceText={curTextOptions?.enter?.backSpace}
style={defaultStyles.button} textStyle={styles?.enter?.buttonText} onPress={onPinButtonPressed} />
Expand Down

0 comments on commit f461720

Please sign in to comment.