From 398ec7ffe7f7b6500731c5fc05deb6395376a309 Mon Sep 17 00:00:00 2001 From: Viktoryia Kliushun Date: Fri, 27 Oct 2023 09:25:19 +0200 Subject: [PATCH] Move QRCode component out of the folder --- src/components/{QRCode/index.tsx => QRCode.tsx} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename src/components/{QRCode/index.tsx => QRCode.tsx} (95%) diff --git a/src/components/QRCode/index.tsx b/src/components/QRCode.tsx similarity index 95% rename from src/components/QRCode/index.tsx rename to src/components/QRCode.tsx index bca45c02fffa..677063cdf57b 100644 --- a/src/components/QRCode/index.tsx +++ b/src/components/QRCode.tsx @@ -1,8 +1,8 @@ import React, {Ref} from 'react'; import QRCodeLibrary from 'react-native-qrcode-svg'; import {ImageSourcePropType} from 'react-native'; -import defaultTheme from '../../styles/themes/default'; -import CONST from '../../CONST'; +import defaultTheme from '../styles/themes/default'; +import CONST from '../CONST'; type LogoRatio = typeof CONST.QR.DEFAULT_LOGO_SIZE_RATIO | typeof CONST.QR.EXPENSIFY_LOGO_SIZE_RATIO;