function getEuroMonthly()

in client/utilities/pricingConfig/suggestedAmounts.ts [221:245]


function getEuroMonthly(amount: number) {
	if (amount <= 4) {
		return [6, 8, 12];
	}
	if (amount <= 8) {
		return [10, 12, 15];
	}
	if (amount === 9) {
		return [15, 17, 20];
	}
	if (amount <= 18) {
		return [20, 22, 25];
	}
	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);
	}
}