Fixed typo

This commit is contained in:
Michael
2021-06-27 16:27:03 +02:00
parent 071c8b940a
commit e9961c5c1b
2 changed files with 13 additions and 13 deletions

View File

@@ -124,7 +124,7 @@ const Pricing = () => {
</div>
<div>
<p className={`${!enabled ? "text-gray-500" : null}`}>
Billed anually
Billed annually
</p>
</div>
</div>
@@ -161,7 +161,7 @@ const Pricing = () => {
handleSubmit(
e,
enabled
? Prices.personal.anually.id
? Prices.personal.annually.id
: Prices.personal.monthly.id
)
}>
@@ -209,7 +209,7 @@ const Pricing = () => {
handleSubmit(
e,
enabled
? Prices.team.anually.id
? Prices.team.annually.id
: Prices.team.monthly.id
)
}>
@@ -256,7 +256,7 @@ const Pricing = () => {
: (e) =>
handleSubmit(
e,
enabled ? Prices.pro.anually.id : Prices.pro.monthly.id
enabled ? Prices.pro.annually.id : Prices.pro.monthly.id
)
}>
{sub ? "Upgrade" : "Buy Now"}

View File

@@ -6,9 +6,9 @@ const Prices = {
id: "price_1J5q2yDMjD0UnVmMXzEWYDnl",
desc: "Personal plan (monthly)",
},
anually: {
annually: {
id: "price_1J5q45DMjD0UnVmMQxXHKGAv",
desc: "Personal plan (anually)",
desc: "Personal plan (annually)",
},
},
team: {
@@ -16,9 +16,9 @@ const Prices = {
id: "price_1J5q3GDMjD0UnVmMlHc5Eedq",
desc: "Team plan (monthly)",
},
anually: {
annually: {
id: "price_1J5q8zDMjD0UnVmMqsngM91X",
desc: "Team plan (anually)",
desc: "Team plan (annually)",
},
},
pro: {
@@ -26,20 +26,20 @@ const Prices = {
id: "price_1J6KRuDMjD0UnVmMIItaOdT3",
desc: "Pro plan (monthly)",
},
anually: {
annually: {
id: "price_1J5q9VDMjD0UnVmMIQtVDSZ9",
desc: "Pro plan (anually)",
desc: "Pro plan (annually)",
},
},
};
const PriceIds = {
price_1J5q2yDMjD0UnVmMXzEWYDnl: "Personal plan (monthly)",
price_1J5q45DMjD0UnVmMQxXHKGAv: "Personal plan (anually)",
price_1J5q45DMjD0UnVmMQxXHKGAv: "Personal plan (annually)",
price_1J5q3GDMjD0UnVmMlHc5Eedq: "Team plan (monthly)",
price_1J5q8zDMjD0UnVmMqsngM91X: "Team plan (anually)",
price_1J5q8zDMjD0UnVmMqsngM91X: "Team plan (annually)",
price_1J6KRuDMjD0UnVmMIItaOdT3: "Pro plan (monthly)",
price_1J5q9VDMjD0UnVmMIQtVDSZ9: "Pro plan (anually)",
price_1J5q9VDMjD0UnVmMIQtVDSZ9: "Pro plan (annually)",
};
export { Prices, PriceIds };