We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a57dcb3 commit cb24eb5Copy full SHA for cb24eb5
src/components/transactions/Emode/EmodeModalContent.tsx
@@ -106,7 +106,9 @@ export const EmodeModalContent = ({ user }: { user: ExtendedFormattedUser }) =>
106
}
107
108
const isHorizonMarket =
109
- currentMarket === 'proto_horizon_v3' || currentMarket === 'proto_sepolia_horizon_v3';
+ currentMarket.includes('proto_horizon_v3') ||
110
+ currentMarket.includes('fork_proto_horizon_v3') ||
111
+ currentMarket.includes('proto_sepolia_horizon_v3');
112
return isHorizonMarket ? eModeCategories[2] : eModeCategories[1];
113
};
114
0 commit comments