diff --git a/components/Pricing.js b/components/Pricing.js
index 550d3fe..bbeaf3b 100644
--- a/components/Pricing.js
+++ b/components/Pricing.js
@@ -124,7 +124,7 @@ const Pricing = () => {
- Billed anually
+ Billed annually
@@ -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"}
diff --git a/utils/priceList.js b/utils/priceList.js
index e4da6e1..e8af342 100644
--- a/utils/priceList.js
+++ b/utils/priceList.js
@@ -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 };