Skip to content

Commit 25f9e13

Browse files
committed
Fix spelling in sponsor tiers
1 parent bf74653 commit 25f9e13

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/sponsor-tiers/sponsor-tiers.astro

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ const formatPrice = (price: number | string) => {
226226
{tier.slotsLeft ? (
227227
<>
228228
<span>{tier.slotsLeft}</span>
229-
{tier.slotsLeft == 1 ? "slot" : "slots"} availalbe
229+
{tier.slotsLeft == 1 ? "slot" : "slots"} available
230230
</>
231231
) : (
232232
<>Fully booked</>
@@ -282,7 +282,7 @@ const formatPrice = (price: number | string) => {
282282
) : tier.slotsLeft ? (
283283
<>
284284
<span>{tier.slotsLeft}</span>
285-
{tier.slotsLeft == 1 ? "slot" : "slots"} availalbe
285+
{tier.slotsLeft == 1 ? "slot" : "slots"} available
286286
</>
287287
) : (
288288
<>Fully booked</>
@@ -338,7 +338,7 @@ const formatPrice = (price: number | string) => {
338338
) : tier.slotsLeft ? (
339339
<>
340340
<span>{tier.slotsLeft}</span>
341-
{tier.slotsLeft == 1 ? "slot" : "slots"} availalbe
341+
{tier.slotsLeft == 1 ? "slot" : "slots"} available
342342
</>
343343
) : (
344344
<>Fully booked</>
@@ -392,7 +392,7 @@ const formatPrice = (price: number | string) => {
392392
{tier.slotsLeft ? (
393393
<>
394394
<span>{tier.slotsLeft}</span>
395-
{tier.slotsLeft == 1 ? "slot" : "slots"} availalbe
395+
{tier.slotsLeft == 1 ? "slot" : "slots"} available
396396
</>
397397
) : (
398398
<>Fully booked</>

0 commit comments

Comments
 (0)