Skip to content

Commit

Permalink
fix null value
Browse files Browse the repository at this point in the history
  • Loading branch information
dtmkeng committed Jan 16, 2025
1 parent fe65404 commit 5237000
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dexs/quickswap/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ const fetchLiquidityHub = async (timestamp: number) => {

return {
dailyVolume: `${dailyVolume}`,
totalVolume: `${totalVolume}`,
totalVolume: totalVolume ? `${totalVolume}` : undefined,
timestamp: timestamp,
};
};
Expand Down

0 comments on commit 5237000

Please sign in to comment.