From 989c43aace26e25f1b98742e8581992d46a8953a Mon Sep 17 00:00:00 2001 From: mohitb35 <44917347+mohitb35@users.noreply.github.com> Date: Wed, 17 May 2023 16:48:44 +0530 Subject: [PATCH] fix: resolves type mismatch in PaymentOptions --- src/Common/Types/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Common/Types/index.tsx b/src/Common/Types/index.tsx index 60bb6434..c2d6dacd 100644 --- a/src/Common/Types/index.tsx +++ b/src/Common/Types/index.tsx @@ -147,8 +147,8 @@ export interface PaymentOptions extends FetchedProjectDetails { unitCost: number; currency: string; destination: string; - isApproved?: boolean; - isTopProject?: boolean; + isApproved: boolean; + isTopProject: boolean; } interface Frequencies {