Skip to content

Commit

Permalink
Merge pull request #4297 from Giveth/fix/3829_add_donation_warning
Browse files Browse the repository at this point in the history
fix: keep minimumValidUsdValue field only on FETCH_PROJECT_BY_SLUG_DO…
  • Loading branch information
RamRamez authored Jun 19, 2024
2 parents 0c0af25 + 9c1ba85 commit 94fcf28
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions src/apollo/gql/gqlProjects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ export const PROJECT_CORE_FIELDS = gql`
allocatedTokenSymbol
allocatedFundUSDPreferred
allocatedFundUSD
minimumValidUsdValue
}
}
`;
Expand Down Expand Up @@ -279,7 +278,6 @@ export const FETCH_PROJECT_BY_SLUG_SINGLE_PROJECT = gql`
allocatedTokenSymbol
allocatedFundUSDPreferred
allocatedFundUSD
minimumValidUsdValue
}
campaigns {
id
Expand Down
2 changes: 1 addition & 1 deletion src/apollo/types/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ export interface IQFRound {
allocatedFundUSDPreferred: boolean;
allocatedTokenSymbol: string;
allocatedTokenChainId: number;
minimumValidUsdValue: number;
minimumValidUsdValue?: number;
}

export interface IArchivedQFRound extends IQFRound {
Expand Down

0 comments on commit 94fcf28

Please sign in to comment.