Skip to content

Commit

Permalink
fix: Fix a Price rate description
Browse files Browse the repository at this point in the history
  • Loading branch information
jinoosss committed Dec 16, 2023
1 parent af88171 commit 493feb6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ const SelectPriceRangeCutomController: React.FC<SelectPriceRangeCutomControllerP
const [changed, setChanged] = useState(false);

const tokenInfo = useMemo(() => {
return `${token0Symbol} per ${token1Symbol}`;
return `${token1Symbol} per ${token0Symbol}`;
}, [token0Symbol, token1Symbol]);

const disabledController = useMemo(() => {
Expand Down

0 comments on commit 493feb6

Please sign in to comment.