Skip to content

Commit

Permalink
Merge pull request #152 from birdflop/dev
Browse files Browse the repository at this point in the history
typo fixes
  • Loading branch information
kakduman authored Jun 12, 2024
2 parents 3cfa0b8 + 75a8eee commit 97eef16
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/routes/plans/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ export default component$(() => {
onClick$={() => { if (!plan.outOfStock) store.plan = planName; store.gb = 0; }}
href="#ram">
<p>
Last quarter, clients paid <strong>~${plan.$PerGBReimbursed}/GB RAM</strong> after reimbursements.
Last quarter, clients paid <strong>${plan.$PerGBReimbursed}/GB RAM</strong> after reimbursements.
</p>
<Header subheader={<>{ramOptions[0]} - {ramOptions[ramOptions.length - 1]} GB plans<br/>capped at ${plan.$PerGB}/GB</>}>
{planName}
Expand Down Expand Up @@ -239,8 +239,8 @@ export default component$(() => {
Order Summary
</Header>
<p>{store.plan} {store.gb} GB</p>
<p>Capped at ~${(store.gb * plans[store.plan as keyof typeof plans]?.$PerGB).toFixed(2)}/mo.</p>
<p>${(store.gb * plans[store.plan as keyof typeof plans]?.$PerGBReimbursed).toFixed(2)}/mo after reimbursements.</p>
<p>Capped at ${(store.gb * plans[store.plan as keyof typeof plans]?.$PerGB).toFixed(2)}/mo.</p>
<p>~${(store.gb * plans[store.plan as keyof typeof plans]?.$PerGBReimbursed).toFixed(2)}/mo after reimbursements.</p>
</div>
<ButtonAnchor href={`https://client.birdflop.com/order/config/index/${plans[store.plan as keyof typeof plans]?.id}/?group_id=${plans[store.plan as keyof typeof plans]?.groupId}&pricing_id=${(plans[store.plan as keyof typeof plans]?.ramAndId as any)[store.gb]}&billing_cycle=monthly`}
size="xl" color="blue">
Expand Down

0 comments on commit 97eef16

Please sign in to comment.