1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-20 14:54:15 +01:00

move payment modal from /base to /payment

This commit is contained in:
Sylvain 2021-04-09 08:39:03 +02:00
parent fb2abcc382
commit 4f3a47ae04
3 changed files with 4 additions and 4 deletions

View File

@ -2,8 +2,8 @@ import React, { FunctionComponent, ReactNode, useEffect, useState } from 'react'
import { useTranslation } from 'react-i18next';
import WalletLib from '../../lib/wallet';
import { WalletInfo } from '../wallet-info';
import { FabModal, ModalSize } from './fab-modal';
import { HtmlTranslate } from './html-translate';
import { FabModal, ModalSize } from '../base/fab-modal';
import { HtmlTranslate } from '../base/html-translate';
import { CustomAssetName } from '../../models/custom-asset';
import { IFablab } from '../../models/fablab';
import { CartItems } from '../../models/payment';

View File

@ -9,7 +9,7 @@ import { User } from '../../models/user';
import payzenLogo from '../../../../images/payzen-secure.png';
import mastercardLogo from '../../../../images/mastercard.png';
import visaLogo from '../../../../images/visa.png';
import { GatewayFormProps, PaymentModal } from '../base/payment-modal';
import { GatewayFormProps, PaymentModal } from '../payment/payment-modal';
declare var Application: IApplication;

View File

@ -12,7 +12,7 @@ import { User } from '../../models/user';
import stripeLogo from '../../../../images/powered_by_stripe.png';
import mastercardLogo from '../../../../images/mastercard.png';
import visaLogo from '../../../../images/visa.png';
import { GatewayFormProps, PaymentModal } from '../base/payment-modal';
import { GatewayFormProps, PaymentModal } from '../payment/payment-modal';
declare var Application: IApplication;