From 14dff05785a81dbee527b3ae7070471357ba9c89 Mon Sep 17 00:00:00 2001 From: avraham Date: Mon, 24 Feb 2025 09:15:09 -0500 Subject: [PATCH] fix: case where calendar exit price data is empty --- frontend/src/pages/HistoricalCalendarPrices.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/HistoricalCalendarPrices.tsx b/frontend/src/pages/HistoricalCalendarPrices.tsx index d30ae36..995acbf 100644 --- a/frontend/src/pages/HistoricalCalendarPrices.tsx +++ b/frontend/src/pages/HistoricalCalendarPrices.tsx @@ -207,7 +207,7 @@ export function HistoricalCalendarPrices() { {underlying.value !== null && - similarCalendarPriceChartData.value.length > 0 ? ( + calendarExitPriceChartData.value.length > 0 ? (