diff --git a/src/components/common/Table/poolsColumns.tsx b/src/components/common/Table/poolsColumns.tsx index 6518c97..72c0713 100644 --- a/src/components/common/Table/poolsColumns.tsx +++ b/src/components/common/Table/poolsColumns.tsx @@ -68,7 +68,17 @@ const Plugins = ({ poolId }: { poolId: Address }) => { ); }; -const AvgAPR = ({ children, avgApr, farmApr, maxApr }: { children: ReactNode; avgApr: string; farmApr: string | undefined; maxApr: string }) => { +const AvgAPR = ({ + children, + avgApr, + farmApr, + maxApr, +}: { + children: ReactNode; + avgApr: string; + farmApr: string | undefined; + maxApr: string; +}) => { return ( {children} @@ -135,11 +145,11 @@ export const poolsColumns: ColumnDef[] = [ cell: ({ getValue, row }) => { return ( - {formatPercent.format(getValue() as number)} + {formatPercent.format((getValue() as number) / 100)} ); },