diff --git a/src/hooks/bonds/index.js b/src/hooks/bonds/index.js index 923bdeb..5983218 100644 --- a/src/hooks/bonds/index.js +++ b/src/hooks/bonds/index.js @@ -192,8 +192,8 @@ export const useLiveBonds = (chainId, chainName) => { inBaseToken: maxPayoutInBaseToken, inQuoteToken: maxPayoutInQuoteToken, }, - }; - }).sort((a, b) => (a.id > b.id ? -1 : 1)) || []; + } + }).sort((a, b) => (a.id > b.id ? -1 : 1)) : []; return { liveBonds, refetch }; }