REF: File name

This commit is contained in:
Marcos Rodriguez Velez 2024-05-17 17:49:00 -04:00
parent 0d765c67ea
commit a4afa64926
No known key found for this signature in database
GPG Key ID: 6030B2F48CCE86D7
3 changed files with 2 additions and 2 deletions

View File

@ -1,8 +1,8 @@
import React, { lazy, Suspense } from 'react';
import { LazyLoadingIndicator } from './LazyLoadingIndicator';
const PaymentCode = lazy(() => import('../screen/wallets/paymentCode'));
const PaymentCodesList = lazy(() => import('../screen/wallets/paymentCodesList'));
const PaymentCode = lazy(() => import('../screen/wallets/PaymentCode'));
const PaymentCodesList = lazy(() => import('../screen/wallets/PaymentCodesList'));
export const PaymentCodeComponent = () => (
<Suspense fallback={<LazyLoadingIndicator />}>