function getUsdMonthly()

in client/utilities/pricingConfig/suggestedAmounts.ts [145:172]


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