function getAusMonthly()

in client/utilities/pricingConfig/suggestedAmounts.ts [282:309]


function getAusMonthly(amount: number) {
	if (amount <= 9) {
		return [15, 17, 20];
	}
	if (amount <= 18) {
		return [20, 22, 25];
	}
	if (amount <= 27) {
		return [30, 32, 35];
	}
	if (amount <= 29) {
		return [35, 37, 40];
	}
	if (amount <= 35) {
		return [40, 42, 45];
	}
	if (amount <= 39) {
		return [45, 47, 50];
	}
	if (amount <= 45) {
		return [50, 52, 55];
	}
	if (amount <= 50) {
		return [60, 62, 65];
	} else {
		return getSupporterPlusSuggestedAmountsMonthly(amount);
	}
}