Skip to content

Commit

Permalink
fix(iam): fix the list of providers for gitcoin stamps
Browse files Browse the repository at this point in the history
  • Loading branch information
nutrina authored and gdixon committed Sep 7, 2022
1 parent 8843b6c commit 4e36bca
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions app/config/providers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ export const STAMP_PROVIDERS: Readonly<Providers> = {
{
platformGroup: "Contributed ($)...",
providers: [
{ title: "more than $1", name: "GitcoinContributorStatistics#totalContributionAmountGte#1" },
{ title: "more than $10", name: "GitcoinContributorStatistics#totalContributionAmountGte#10" },
{ title: "more than $100", name: "GitcoinContributorStatistics#totalContributionAmountGte#100" },
{ title: "more than $1000", name: "GitcoinContributorStatistics#totalContributionAmountGte#1000" },
Expand Down Expand Up @@ -162,10 +161,9 @@ export const STAMP_PROVIDERS: Readonly<Providers> = {
{
platformGroup: "Grants have received...",
providers: [
{ title: "more than $10", name: "GitcoinGranteeStatistics#totalContributionAmount#10" },
{ title: "more than $25", name: "GitcoinGranteeStatistics#totalContributionAmount#25" },
{ title: "more than $100", name: "GitcoinGranteeStatistics#totalContributionAmount#100" },
{ title: "more than $1000", name: "GitcoinGranteeStatistics#totalContributionAmount#1000" },
{ title: "more than $10000", name: "GitcoinGranteeStatistics#totalContributionAmount#10000" },
],
},
{
Expand Down
4 changes: 1 addition & 3 deletions types/src/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,6 @@ export type PROVIDER_ID =
| "GitcoinContributorStatistics#numGrantsContributeToGte#10"
| "GitcoinContributorStatistics#numGrantsContributeToGte#25"
| "GitcoinContributorStatistics#numGrantsContributeToGte#100"
| "GitcoinContributorStatistics#totalContributionAmountGte#1"
| "GitcoinContributorStatistics#totalContributionAmountGte#10"
| "GitcoinContributorStatistics#totalContributionAmountGte#100"
| "GitcoinContributorStatistics#totalContributionAmountGte#1000"
Expand All @@ -193,10 +192,9 @@ export type PROVIDER_ID =
| "GitcoinGranteeStatistics#numGrantContributors#10"
| "GitcoinGranteeStatistics#numGrantContributors#25"
| "GitcoinGranteeStatistics#numGrantContributors#100"
| "GitcoinGranteeStatistics#totalContributionAmount#10"
| "GitcoinGranteeStatistics#totalContributionAmount#25"
| "GitcoinGranteeStatistics#totalContributionAmount#100"
| "GitcoinGranteeStatistics#totalContributionAmount#1000"
| "GitcoinGranteeStatistics#totalContributionAmount#10000"
| "GitcoinGranteeStatistics#numGrantsInEcoAndCauseRound#1"
| "Linkedin"
| "Discord"
Expand Down

0 comments on commit 4e36bca

Please sign in to comment.