fix(admin): Remove "maxAmountPerMonth" from createContributionLink gql. (#3343)

This commit is contained in:
MateuszMichalowski 2024-08-08 18:26:48 +02:00 committed by GitHub
parent 14f9ca4acb
commit fb047b89b5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,7 +9,6 @@ export const createContributionLink = gql`
$memo: String!
$cycle: String!
$maxPerCycle: Int! = 1
$maxAmountPerMonth: Decimal
) {
createContributionLink(
validFrom: $validFrom
@ -19,7 +18,6 @@ export const createContributionLink = gql`
memo: $memo
cycle: $cycle
maxPerCycle: $maxPerCycle
maxAmountPerMonth: $maxAmountPerMonth
) {
link
}