From 9029d756e75e849aed917cf38f18c4b18064f6fc Mon Sep 17 00:00:00 2001 From: Manuel Bustillo Date: Thu, 12 Dec 2024 00:19:46 +0100 Subject: [PATCH] Fix compilation issue --- app/ui/dashboard/global-summary.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/ui/dashboard/global-summary.tsx b/app/ui/dashboard/global-summary.tsx index 8de82ee..8aaff3c 100644 --- a/app/ui/dashboard/global-summary.tsx +++ b/app/ui/dashboard/global-summary.tsx @@ -1,9 +1,9 @@ /* Copyright (C) 2024 Manuel Bustillo*/ -import { GlobalSummary } from '@/app/lib/definitions'; +import { GlobalSummary as Summary} from '@/app/lib/definitions'; import { MainCard, SecondaryCard } from '../components/dashboard-cards'; -export default function GlobalSummary({ summary }: { summary: GlobalSummary }) { +export default function GlobalSummary({ summary }: { summary: Summary }) { return (