Skip to content

Commit

Permalink
chore(coinmarket): rename folders sell_new to sell and exchange_new t…
Browse files Browse the repository at this point in the history
…o exchange
  • Loading branch information
adderpositive authored and tomasklim committed Oct 8, 2024
1 parent 54102a6 commit b4d0081
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 16 deletions.
16 changes: 8 additions & 8 deletions packages/suite-desktop-ui/src/support/Router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ import { CoinmarketBuyForm } from 'src/views/wallet/coinmarket/buy/CoinmarketBuy
import { CoinmarketBuyDetail } from 'src/views/wallet/coinmarket/buy/CoinmarketBuyDetail';
import { CoinmarketBuyOffers } from 'src/views/wallet/coinmarket/buy/CoinmarketBuyOffers';
import { CoinmarketBuyConfirm } from 'src/views/wallet/coinmarket/buy/CoinmarketBuyConfirm';
import { CoinmarketSellForm } from 'src/views/wallet/coinmarket/sell_new/CoinmarketSellForm';
import { CoinmarketSellDetail } from 'src/views/wallet/coinmarket/sell_new/CoinmarketSellDetail';
import { CoinmarketSellOffers } from 'src/views/wallet/coinmarket/sell_new/CoinmarketSellOffers';
import { CoinmarketSellConfirm } from 'src/views/wallet/coinmarket/sell_new/CoinmarketSellConfirm';
import { CoinmarketExchangeForm } from 'src/views/wallet/coinmarket/exchange_new/CoinmarketExchangeForm';
import { CoinmarketExchangeDetail } from 'src/views/wallet/coinmarket/exchange_new/CoinmarketExchangeDetail';
import { CoinmarketExchangeOffers } from 'src/views/wallet/coinmarket/exchange_new/CoinmarketExchangeOffers';
import { CoinmarketExchangeConfirm } from 'src/views/wallet/coinmarket/exchange_new/CoinmarketExchangeConfirm';
import { CoinmarketSellForm } from 'src/views/wallet/coinmarket/sell/CoinmarketSellForm';
import { CoinmarketSellDetail } from 'src/views/wallet/coinmarket/sell/CoinmarketSellDetail';
import { CoinmarketSellOffers } from 'src/views/wallet/coinmarket/sell/CoinmarketSellOffers';
import { CoinmarketSellConfirm } from 'src/views/wallet/coinmarket/sell/CoinmarketSellConfirm';
import { CoinmarketExchangeForm } from 'src/views/wallet/coinmarket/exchange/CoinmarketExchangeForm';
import { CoinmarketExchangeDetail } from 'src/views/wallet/coinmarket/exchange/CoinmarketExchangeDetail';
import { CoinmarketExchangeOffers } from 'src/views/wallet/coinmarket/exchange/CoinmarketExchangeOffers';
import { CoinmarketExchangeConfirm } from 'src/views/wallet/coinmarket/exchange/CoinmarketExchangeConfirm';
import { CoinmarketDCALanding } from 'src/views/wallet/coinmarket/DCA/CoinmarketDCALanding';
import { CoinmarketRedirect } from 'src/views/wallet/coinmarket/redirect/CoinmarketRedirect';
import { CoinmarketTransactions } from 'src/views/wallet/coinmarket/transactions/CoinmarketTransactions';
Expand Down
16 changes: 8 additions & 8 deletions packages/suite-web/src/support/Router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,42 +71,42 @@ const components: Record<PageName, LazyExoticComponent<ComponentType<any>>> = {
),
'wallet-coinmarket-sell': lazy(() =>
import(
/* webpackChunkName: "coinmarket" */ 'src/views/wallet/coinmarket/sell_new/CoinmarketSellForm'
/* webpackChunkName: "coinmarket" */ 'src/views/wallet/coinmarket/sell/CoinmarketSellForm'
).then(({ CoinmarketSellForm }) => ({ default: CoinmarketSellForm })),
),
'wallet-coinmarket-sell-detail': lazy(() =>
import(
/* webpackChunkName: "coinmarket" */ 'src/views/wallet/coinmarket/sell_new/CoinmarketSellDetail'
/* webpackChunkName: "coinmarket" */ 'src/views/wallet/coinmarket/sell/CoinmarketSellDetail'
).then(({ CoinmarketSellDetail }) => ({ default: CoinmarketSellDetail })),
),
'wallet-coinmarket-sell-offers': lazy(() =>
import(
/* webpackChunkName: "coinmarket" */ 'src/views/wallet/coinmarket/sell_new/CoinmarketSellOffers'
/* webpackChunkName: "coinmarket" */ 'src/views/wallet/coinmarket/sell/CoinmarketSellOffers'
).then(({ CoinmarketSellOffers }) => ({ default: CoinmarketSellOffers })),
),
'wallet-coinmarket-sell-confirm': lazy(() =>
import(
/* webpackChunkName: "coinmarket" */ 'src/views/wallet/coinmarket/sell_new/CoinmarketSellConfirm'
/* webpackChunkName: "coinmarket" */ 'src/views/wallet/coinmarket/sell/CoinmarketSellConfirm'
).then(({ CoinmarketSellConfirm }) => ({ default: CoinmarketSellConfirm })),
),
'wallet-coinmarket-exchange': lazy(() =>
import(
/* webpackChunkName: "coinmarket" */ 'src/views/wallet/coinmarket/exchange_new/CoinmarketExchangeForm'
/* webpackChunkName: "coinmarket" */ 'src/views/wallet/coinmarket/exchange/CoinmarketExchangeForm'
).then(({ CoinmarketExchangeForm }) => ({ default: CoinmarketExchangeForm })),
),
'wallet-coinmarket-exchange-detail': lazy(() =>
import(
/* webpackChunkName: "coinmarket" */ 'src/views/wallet/coinmarket/exchange_new/CoinmarketExchangeDetail'
/* webpackChunkName: "coinmarket" */ 'src/views/wallet/coinmarket/exchange/CoinmarketExchangeDetail'
).then(({ CoinmarketExchangeDetail }) => ({ default: CoinmarketExchangeDetail })),
),
'wallet-coinmarket-exchange-offers': lazy(() =>
import(
/* webpackChunkName: "coinmarket" */ 'src/views/wallet/coinmarket/exchange_new/CoinmarketExchangeOffers'
/* webpackChunkName: "coinmarket" */ 'src/views/wallet/coinmarket/exchange/CoinmarketExchangeOffers'
).then(({ CoinmarketExchangeOffers }) => ({ default: CoinmarketExchangeOffers })),
),
'wallet-coinmarket-exchange-confirm': lazy(() =>
import(
/* webpackChunkName: "coinmarket" */ 'src/views/wallet/coinmarket/exchange_new/CoinmarketExchangeConfirm'
/* webpackChunkName: "coinmarket" */ 'src/views/wallet/coinmarket/exchange/CoinmarketExchangeConfirm'
).then(({ CoinmarketExchangeConfirm }) => ({ default: CoinmarketExchangeConfirm })),
),
'wallet-coinmarket-dca': lazy(() =>
Expand Down

0 comments on commit b4d0081

Please sign in to comment.