Merge pull request #2913 from BlueWallet/2888

FIX: iOS dark mode makes text illegible #2888
This commit is contained in:
GLaDOS 2021-04-05 17:58:52 +01:00 committed by GitHub
commit 5d48f9f809
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -594,11 +594,11 @@ export const BlueText = props => {
const { colors } = useTheme();
return (
<Text
style={{
color: colors.foregroundColor,
...props.style,
}}
{...props}
style={{
...props.style,
color: colors.foregroundColor,
}}
/>
);
};