diff --git a/src/@context/Pool/index.tsx b/src/@context/Pool/index.tsx index 4557730f2..db1c9adf0 100644 --- a/src/@context/Pool/index.tsx +++ b/src/@context/Pool/index.tsx @@ -197,7 +197,7 @@ function PoolProvider({ children }: { children: ReactNode }): ReactElement { // Staking bot receives half the pool shares so for display purposes // we can multiply by 2 as we have a hardcoded 50/50 pool weight. - const userPoolShares = new Decimal(poolInfoUser.poolShares) + const userPoolShares = new Decimal(poolInfoUser.poolShares || 0) .mul(2) .toString()