From 6306abe7a188b8c2b324ca6237bfd1e298fce512 Mon Sep 17 00:00:00 2001 From: Lorenzo Pieri Date: Thu, 17 Oct 2024 12:14:20 +0200 Subject: [PATCH] fix: linting --- src/app/emails/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/emails/page.tsx b/src/app/emails/page.tsx index e5f141e..dcd7b82 100644 --- a/src/app/emails/page.tsx +++ b/src/app/emails/page.tsx @@ -7,7 +7,7 @@ const CONFIRMATION_EMAIL = `confirmation` const APPROVED_EMAIL = `approved` const REJECTED_EMAIL = `rejected` -const EmailsPage: React.FC<{ children: React.ReactNode }> = ({ children }) => { +const EmailsPage = ({ children }: { children: React.ReactNode }) => { const [loading, setLoading] = useState(false) const [error, setError] = useState(null) const [success, setSuccess] = useState(null)