From ac9554ba21aa39477fb9ba6e76595402bc80f44c Mon Sep 17 00:00:00 2001 From: avraham Date: Sun, 6 Oct 2024 15:14:30 -0400 Subject: [PATCH] migrated to mui `Grid2` --- .../src/pages/HistoricalCalendarPrices.tsx | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/frontend/src/pages/HistoricalCalendarPrices.tsx b/frontend/src/pages/HistoricalCalendarPrices.tsx index d7d3580..9fa5b33 100644 --- a/frontend/src/pages/HistoricalCalendarPrices.tsx +++ b/frontend/src/pages/HistoricalCalendarPrices.tsx @@ -11,7 +11,7 @@ import { import { Scatter } from "react-chartjs-2"; import { Container, - Grid, + Grid2, Typography, Paper, Popper, @@ -63,8 +63,8 @@ export function HistoricalCalendarPrices() { return ( - - + + : @@ -93,8 +93,8 @@ export function HistoricalCalendarPrices() { - - + + {underlying.value !== null && stockPriceChartData.value.length > 0 ? ( @@ -158,8 +158,8 @@ export function HistoricalCalendarPrices() { Loading Chart... )} - - + + {underlying.value !== null && similarCalendarPriceChartData.value.length > 0 ? ( @@ -219,8 +219,8 @@ export function HistoricalCalendarPrices() { Loading Chart... )} - - + + {underlying.value !== null && similarCalendarPriceChartData.value.length > 0 ? ( @@ -293,8 +293,8 @@ export function HistoricalCalendarPrices() { Loading Chart... )} - - + + ); }