File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -108,14 +108,15 @@ export const dexRoutes = dexLayoutRoute.addChildren([
108108 } ) ,
109109 createRoute ( {
110110 path : '$network/pools/$poolIdOrAddress' ,
111- loader : ( { params : { network, pool } } ) => redirectTo ( `/dex/${ network } /pools/${ pool } /deposit/` ) ,
111+ loader : ( { params : { network, poolIdOrAddress } } ) =>
112+ redirectTo ( `/dex/${ network } /pools/${ poolIdOrAddress } /deposit/` ) ,
112113 ...layoutProps ,
113114 } ) ,
114115 createRoute ( {
115116 path : '$network/pools/$poolIdOrAddress/$formType' ,
116117 component : PagePool ,
117118 head : ( { params } ) => ( {
118- meta : [ { title : `Curve - Pool - ${ params . pool } - Curve` } ] ,
119+ meta : [ { title : `Curve - Pool - ${ params . poolIdOrAddress } - Curve` } ] ,
119120 } ) ,
120121 ...layoutProps ,
121122 } ) ,
You can’t perform that action at this time.
0 commit comments