Skip to content

Commit 38909bc

Browse files
committed
Enable Mayan routes (except SHUTTLE) for all assets
Signed-off-by: Emre Bogazliyanlioglu <emre@wormholelabs.xyz>
1 parent c9d8947 commit 38909bc

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

wormhole-connect/src/hooks/useFetchSupportedRoutes.ts

+9
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,15 @@ const useFetchSupportedRoutes = (): HookReturn => {
7777
);
7878
}
7979

80+
// HAX - Enable Mayan routes (except SHUTTLE) for all assets
81+
// TODO token refactor
82+
if (
83+
route.rc.name.includes('Mayan') &&
84+
route.rc.name !== 'MayanSwapSHUTTLE'
85+
) {
86+
supported = true;
87+
}
88+
8089
if (supported) {
8190
_routes.push(name);
8291
}

0 commit comments

Comments
 (0)