From 95b4a51835bd697aadf1fc04c0c5079196dd5b7c Mon Sep 17 00:00:00 2001 From: Jun Su Date: Thu, 16 Jun 2022 22:52:32 +0800 Subject: [PATCH] add missing import --- frontend/components/Stats.tsx | 1 + frontend/components/Summary.tsx | 1 + 2 files changed, 2 insertions(+) diff --git a/frontend/components/Stats.tsx b/frontend/components/Stats.tsx index 817a8fef0..bd34bde16 100644 --- a/frontend/components/Stats.tsx +++ b/frontend/components/Stats.tsx @@ -1,5 +1,6 @@ import { styled } from '@mui/styles'; import { StatsTitle, StatsValue, Percentage } from './Summary'; +import { GridStats } from '../api/bbgo'; const StatsSection = styled('div')(() => ({ display: 'grid', diff --git a/frontend/components/Summary.tsx b/frontend/components/Summary.tsx index 695cf794e..a91435fab 100644 --- a/frontend/components/Summary.tsx +++ b/frontend/components/Summary.tsx @@ -1,4 +1,5 @@ import { styled } from '@mui/styles'; +import { GridStats } from '../api/bbgo'; const SummarySection = styled('div')(() => ({ width: '100%',