Skip to content

Commit

Permalink
fix: resolves type mismatch in PaymentOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
mohitb35 committed May 17, 2023
1 parent 543a598 commit 989c43a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Common/Types/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 989c43a

Please sign in to comment.