diff --git a/src/pages/AddLiquidity/index.tsx b/src/pages/AddLiquidity/index.tsx index 1b53c60053..8a7c3667ab 100644 --- a/src/pages/AddLiquidity/index.tsx +++ b/src/pages/AddLiquidity/index.tsx @@ -457,8 +457,11 @@ export default function AddLiquidity({ handleRateToggle={() => { onLeftRangeInput('') onRightRangeInput('') - console.log('test') - history.push(`/add/${currencyIdB as string}/${currencyIdA as string}`) + history.push( + `/add/${currencyIdB as string}/${currencyIdA as string}${ + feeAmount ? '/' + feeAmount : '' + }` + ) }} /> ) : null} @@ -499,8 +502,9 @@ export default function AddLiquidity({ handleRateToggle={() => { onLeftRangeInput('') onRightRangeInput('') - console.log('test') - history.push(`/add/${currencyIdB as string}/${currencyIdA as string}`) + history.push( + `/add/${currencyIdB as string}/${currencyIdA as string}${feeAmount ? '/' + feeAmount : ''}` + ) }} /> ) : null}