Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: typos & terminology sms uage #1608

Merged
merged 2 commits into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -379,22 +379,22 @@
</svelte:fragment>
</CardGrid>
<CardGrid>
<Heading tag="h6" size="7">SMS OTP</Heading>
<Heading tag="h6" size="7">Phone OTP</Heading>
<p class="text">
OTPs are billed per SMS message, with rates varying by recipient country. For a detailed
cost breakdown, see the <a
href="https://appwrite.io/docs/advanced/platform/otp-sms"
href="https://appwrite.io/docs/advanced/platform/phone-otp"
class="link">pricing page</a
>.
</p>
<p>You will not be charged for SMS OTP for messages before February 10th</p>
<p>You will not be charged for Phone OTPs before February 10th.</p>
<svelte:fragment slot="aside">
{#if data.organizationUsage.authPhoneTotal}
<div class="u-flex u-main-space-between">
<p>
<span class="heading-level-4"
>{formatNumberWithCommas(data.organizationUsage.authPhoneTotal)}</span>
<span class="body-text-1 u-bold">SMS OTPs</span>
<span class="body-text-1 u-bold">OTPs</span>
</p>
<p class="u-flex u-gap-8 u-cross-center">
<span class="u-color-text-offline">Estimated cost</span>
Expand All @@ -404,7 +404,7 @@
class="icon-info u-color-text-offline"
use:tooltip={{
content:
'The first 10 SMS OTP messages each month are provided at no cost. Pricing may vary as it depends on telecom rates and vendor agreements.'
'The first 10 messages each month are provided at no cost. Pricing may vary as it depends on telecom rates and vendor agreements.'
}} />
</span>
</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -386,19 +386,19 @@
</svelte:fragment>
</CardGrid>
<CardGrid>
<Heading tag="h6" size="7">SMS OTP</Heading>

<Heading tag="h6" size="7">Phone OTP</Heading>
<p class="text">
Calculated for all SMS OTP sent across your project. Resets at the start of each billing
cycle.
Calculated for all Phone OTP sent across your project. Resets at the start of each
billing cycle.
</p>
<p>You will not be charged for Phone OTPs before February 10th.</p>
<svelte:fragment slot="aside">
{#if data.usage.authPhoneTotal}
<div class="u-flex u-main-space-between">
<p>
<span class="heading-level-4"
>{formatNumberWithCommas(data.usage.authPhoneTotal)}</span>
<span class="body-text-1 u-bold">SMS OTPs</span>
<span class="body-text-1 u-bold">OTPs</span>
</p>
<p class="u-flex u-gap-8 u-cross-center">
<span class="u-color-text-offline">Estimated cost</span>
Expand Down
Loading