From 373ba87de50b540ec166e43114b1380b733ce8c4 Mon Sep 17 00:00:00 2001 From: Aine Date: Mon, 24 Feb 2025 10:08:24 +0200 Subject: [PATCH] fix tests --- src/components/UserImport.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/UserImport.tsx b/src/components/UserImport.tsx index 2bcf418..244268b 100644 --- a/src/components/UserImport.tsx +++ b/src/components/UserImport.tsx @@ -558,7 +558,7 @@ const FilePicker = () => { ); - const allCards: JSX.Element[] = []; + const allCards: React.JSX.Element[] = []; if (uploadCard) allCards.push(uploadCard); if (errorCards) allCards.push(errorCards); if (conflictCards) allCards.push(conflictCards);