From 8e709df7023a178a73c0eb86c961b8bee2a7e9ac Mon Sep 17 00:00:00 2001 From: lucieo Date: Wed, 28 Feb 2024 16:04:17 +0100 Subject: [PATCH] Mark parameter as optional --- web/components/Account/Application/Place/SingleApplication.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/components/Account/Application/Place/SingleApplication.tsx b/web/components/Account/Application/Place/SingleApplication.tsx index 65691d4..8667939 100644 --- a/web/components/Account/Application/Place/SingleApplication.tsx +++ b/web/components/Account/Application/Place/SingleApplication.tsx @@ -13,7 +13,7 @@ const SingleApplication = forwardRef( handleDownload, }: { application: Application - handleDownload: (ref: any) => void + handleDownload?: (ref: any) => void }, ref: any, ) => {