From ba326cd265eb87a3ade00975b1b821be68c00100 Mon Sep 17 00:00:00 2001 From: mbrucedogs Date: Mon, 21 Jul 2025 09:07:27 -0500 Subject: [PATCH] Signed-off-by: mbrucedogs --- src/components/common/EmptyState.tsx | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/components/common/EmptyState.tsx b/src/components/common/EmptyState.tsx index 0e760bf..97c33ff 100644 --- a/src/components/common/EmptyState.tsx +++ b/src/components/common/EmptyState.tsx @@ -1,5 +1,4 @@ import React from 'react'; -import { IonContent } from '@ionic/react'; import type { EmptyStateProps } from '../../types'; const EmptyState: React.FC = ({ @@ -9,7 +8,7 @@ const EmptyState: React.FC = ({ action }) => { return ( - +
{icon && (
@@ -30,7 +29,7 @@ const EmptyState: React.FC = ({
)}
- +
); };