From bc09362efec614a4a9fe12058491151b51fc4dc3 Mon Sep 17 00:00:00 2001 From: Nam Nguyen Date: Mon, 11 Sep 2023 16:04:52 +0700 Subject: [PATCH] redundant % --- src/components/YieldPools/FarmingPoolAPRCell.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/YieldPools/FarmingPoolAPRCell.tsx b/src/components/YieldPools/FarmingPoolAPRCell.tsx index 627db1272f..9ffc678f61 100644 --- a/src/components/YieldPools/FarmingPoolAPRCell.tsx +++ b/src/components/YieldPools/FarmingPoolAPRCell.tsx @@ -192,7 +192,7 @@ const FarmingPoolAPRCell: React.FC = ({ text={} > - {formatDisplayNumber({ value: (poolAPR + maxFarmAPR) / 100, style: 'percent', fractionDigits: 2 })}% + {formatDisplayNumber({ value: (poolAPR + maxFarmAPR) / 100, style: 'percent', fractionDigits: 2 })} @@ -219,7 +219,7 @@ export const ClassicFarmingPoolAPRCell = ({ poolAPR, farm }: { poolAPR: number; }} > - {formatDisplayNumber({ value: (poolAPR + farmAPR) / 100, style: 'percent', fractionDigits: 2 })}% + {formatDisplayNumber({ value: (poolAPR + farmAPR) / 100, style: 'percent', fractionDigits: 2 })} }>