Skip to content

Commit ba697f3

Browse files
authored
fix: banner market (aave#2670)
1 parent 9cc0128 commit ba697f3

2 files changed

Lines changed: 6 additions & 7 deletions

File tree

src/components/MarketSwitcher.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -116,9 +116,8 @@ enum SelectedMarketVersion {
116116
const MARKET_ORDER_BY_TITLE: { [title: string]: number } = {
117117
Core: 0,
118118
Prime: 1,
119-
Base: 2,
120-
Plasma: 3,
121-
119+
Plasma: 2,
120+
Base: 3,
122121
Arbitrum: 4,
123122
Avalanche: 5,
124123
Linea: 6,

src/layouts/MainLayout.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,14 @@ const getCampaignConfigs = (
4141
// },
4242

4343
[ChainId.mainnet]: {
44-
notifyText: 'Horizon, the RWA market is now live.',
44+
notifyText: 'The Plasma market is now live.',
4545
buttonText: 'Get Started',
4646
buttonAction: {
4747
type: 'function' as const,
48-
value: () => openMarket(CustomMarket.proto_horizon_v3),
48+
value: () => openMarket(CustomMarket.proto_plasma_v3),
4949
},
50-
bannerVersion: 'horizon-market-v0',
51-
icon: '/icons/markets/horizon.svg',
50+
bannerVersion: 'plasma-market-v0',
51+
icon: '/icons/networks/plasma.svg',
5252
},
5353

5454
// [ChainId.polygon]: {

0 commit comments

Comments
 (0)