DEL: Old comments

This commit is contained in:
Marcos Rodriguez Velez 2023-10-23 21:31:43 -04:00
parent 8641f94612
commit 4b4cba80a3
No known key found for this signature in database
GPG key ID: 6030B2F48CCE86D7
3 changed files with 0 additions and 6 deletions

View file

@ -23,7 +23,6 @@ export const ArrowPicker = (props: ArrowPickerProps) => {
const stylesHook = { const stylesHook = {
text: { text: {
// @ts-ignore: Ignore theme typescript error
color: colors.foregroundColor, color: colors.foregroundColor,
}, },
}; };

View file

@ -108,7 +108,6 @@ const QRCodeComponent: React.FC<QRCodeComponentProps> = ({
size={size} size={size}
logoSize={logoSize} logoSize={logoSize}
color="#000000" color="#000000"
// @ts-ignore: logoBackgroundColor is not in the type definition
logoBackgroundColor={colors.brandingColor} logoBackgroundColor={colors.brandingColor}
backgroundColor="#FFFFFF" backgroundColor="#FFFFFF"
ecl={ecl} ecl={ecl}

View file

@ -20,19 +20,15 @@ const PleaseBackup: React.FC = () => {
const stylesHook = StyleSheet.create({ const stylesHook = StyleSheet.create({
flex: { flex: {
// @ts-ignore: Ignore
backgroundColor: colors.elevated, backgroundColor: colors.elevated,
}, },
word: { word: {
// @ts-ignore: Ignore
backgroundColor: colors.inputBackgroundColor, backgroundColor: colors.inputBackgroundColor,
}, },
wortText: { wortText: {
// @ts-ignore: Ignore
color: colors.labelText, color: colors.labelText,
}, },
pleaseText: { pleaseText: {
// @ts-ignore: Ignore
color: colors.foregroundColor, color: colors.foregroundColor,
}, },
}); });