diff --git a/app/components/ui/Dashboard.tsx b/app/components/ui/Dashboard.tsx index 6e9ac05a..d6019a81 100644 --- a/app/components/ui/Dashboard.tsx +++ b/app/components/ui/Dashboard.tsx @@ -26,12 +26,17 @@ const Dashboard: React.FC = ({ data }) => { return (
- - - - - - + + Not much + + + + in theory less than Freehold + + + + +
diff --git a/app/components/ui/GraphCard.tsx b/app/components/ui/GraphCard.tsx index 5b54a2d2..58b92a89 100644 --- a/app/components/ui/GraphCard.tsx +++ b/app/components/ui/GraphCard.tsx @@ -4,10 +4,11 @@ type Props = React.PropsWithChildren<{ title: string; }>; -const GraphCard: React.FC = ({ title }) => { +const GraphCard: React.FC = ({ title, children }) => { return (
{title} + {children &&
{children}
}
); };