From 3ad84a886e9f737348efade560340debec6a555d Mon Sep 17 00:00:00 2001 From: Uncle Fatso Date: Sun, 12 Jul 2026 14:06:42 +0300 Subject: [PATCH] fix for the build stage Signed-off-by: Uncle Fatso --- src/hooks/bonds/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }; }