in client/utilities/pricingConfig/suggestedAmounts.ts [66:96]
function getGbpMonthly(amount: number) {
if (amount <= 3) {
return [5, 7, 12];
}
if (amount <= 8) {
return [10, 12, 15];
}
if (amount === 9) {
return [12, 15, 17];
}
if (amount <= 13) {
return [15, 17, 20];
}
if (amount <= 23) {
return [25, 27, 30];
}
if (amount <= 23) {
return [25, 27, 30];
}
if (amount <= 28) {
return [30, 32, 35];
}
if (amount === 29) {
return [35, 37, 40];
}
if (amount <= 35) {
return [40, 42, 45];
} else {
return getSupporterPlusSuggestedAmountsMonthly(amount);
}
}