fix: no borderRadius: 8 for QRCODE

This commit is contained in:
Ivan Vershigora 2024-11-18 16:35:45 +00:00
parent 9c01d06212
commit 5500856abf
No known key found for this signature in database
GPG Key ID: DCCF7FB5ED2CEBD7

View File

@ -128,5 +128,5 @@ const QRCodeComponent: React.FC<QRCodeComponentProps> = ({
export default QRCodeComponent;
const styles = StyleSheet.create({
container: { borderRadius: 8, borderColor: '#FFFFFF' },
container: { borderColor: '#FFFFFF' },
});