diff --git a/dexs/quickswap/index.ts b/dexs/quickswap/index.ts index 13f7848794..dbeef04981 100644 --- a/dexs/quickswap/index.ts +++ b/dexs/quickswap/index.ts @@ -94,7 +94,7 @@ const fetchLiquidityHub = async (timestamp: number) => { return { dailyVolume: `${dailyVolume}`, - totalVolume: `${totalVolume}`, + totalVolume: totalVolume ? `${totalVolume}` : undefined, timestamp: timestamp, }; };