Skip to content

Commit 9db7133

Browse files
authored
remove beta tags from ios (#2152)
1 parent 9227d41 commit 9db7133

14 files changed

+20
-20
lines changed

docs/custom-flows/add-email.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Then skip to the [Email link verification](#email-link-verification) section.
3535
1. The `prepareVerification()` method is used on the newly created `EmailAddress` object to send a verification code to the user.
3636
1. The `attemptVerification()` method is used on the same `EmailAddress` object with the verification code provided by the user to verify the email address.
3737

38-
<Tabs items={["Next.js", "iOS (beta)"]}>
38+
<Tabs items={["Next.js", "iOS"]}>
3939
<Tab>
4040
```tsx {{ filename: 'app/account/add-email/page.tsx', collapsible: true }}
4141
'use client'

docs/custom-flows/add-phone.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The following example demonstrates how to build a custom user interface that all
1919

2020
<Include src="_partials/custom-flows/phone-number" />
2121

22-
<Tabs items={["Next.js", "iOS (beta)"]}>
22+
<Tabs items={["Next.js", "iOS"]}>
2323
<Tab>
2424
```tsx {{ filename: 'app/account/add-phone/page.tsx', collapsible: true }}
2525
'use client'

docs/custom-flows/email-password-mfa.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ This guide will walk you through how to build a custom email/password sign-in fl
4444
> [!TIP]
4545
> For this example to work, the user must have MFA enabled on their account. You need to add the ability for your users to manage their MFA settings. See the [manage SMS-based MFA](/docs/custom-flows/manage-sms-based-mfa) or the [manage TOTP-based MFA](/docs/custom-flows/manage-totp-based-mfa) guide, depending on your needs.
4646
47-
<Tabs items={["Next.js", "JavaScript", "Expo", "iOS (beta)"]}>
47+
<Tabs items={["Next.js", "JavaScript", "Expo", "iOS"]}>
4848
<Tab>
4949
```tsx {{ filename: 'app/sign-in/[[...sign-in]]/page.tsx', collapsible: true }}
5050
'use client'

docs/custom-flows/email-password.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ This guide will walk you through how to build a custom email/password sign-up an
2828
1. Collect the one-time code and attempt to complete the email address verification with it.
2929
1. If the email address verification is successful, set the newly created session as the active session.
3030

31-
<Tabs items={["Next.js", "JavaScript", "Expo", "iOS (beta)"]}>
31+
<Tabs items={["Next.js", "JavaScript", "Expo", "iOS"]}>
3232
<Tab>
3333
This example is written for Next.js App Router but it can be adapted for any React-based framework.
3434

@@ -472,7 +472,7 @@ This guide will walk you through how to build a custom email/password sign-up an
472472
1. Initiate the sign-in process by creating a `SignIn` using the email address and password provided.
473473
1. If the attempt is successful, set the newly created session as the active session.
474474

475-
<Tabs items={["Next.js", "JavaScript", "Expo", "iOS (beta)"]}>
475+
<Tabs items={["Next.js", "JavaScript", "Expo", "iOS"]}>
476476
<Tab>
477477
This example is written for Next.js App Router but it can be adapted for any React-based framework.
478478

docs/custom-flows/email-sms-otp.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ This guide will walk you through how to build a custom SMS OTP sign-up and sign-
2929
1. Attempt to complete the verification with the code the user provides.
3030
1. If the verification is successful, set the newly created session as the active session.
3131

32-
<Tabs items={["Next.js", "JavaScript", "iOS (beta)"]}>
32+
<Tabs items={["Next.js", "JavaScript", "iOS"]}>
3333
<Tab>
3434
This example is written for Next.js App Router but it can be adapted to any React-based framework.
3535

@@ -315,7 +315,7 @@ This guide will walk you through how to build a custom SMS OTP sign-up and sign-
315315
1. Attempt verification with the code the user provides.
316316
1. If the attempt is successful, set the newly created session as the active session.
317317

318-
<Tabs items={["Next.js","JavaScript", "iOS (beta)"]}>
318+
<Tabs items={["Next.js","JavaScript", "iOS"]}>
319319
<Tab>
320320
This example is written for Next.js App Router but it can be adapted to any React-based framework.
321321

docs/custom-flows/forgot-password.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This guide demonstrates how to use Clerk's API to build a custom flow for resett
2121

2222
{/* TODO: Add vanilla JS example. */}
2323

24-
<Tabs items={["Next.js", "iOS (beta)"]}>
24+
<Tabs items={["Next.js", "iOS"]}>
2525
<Tab>
2626
```tsx {{ filename: 'app/forgot-password.tsx', collapsible: true }}
2727
'use client'

docs/custom-flows/multi-session-applications.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ To enable multi-session in your application, you need to configure it in the Cle
2626

2727
## Get the active session and user
2828

29-
<CodeBlockTabs options={["React", "JavaScript", "iOS (beta)"]}>
29+
<CodeBlockTabs options={["React", "JavaScript", "iOS"]}>
3030
```jsx
3131
import { useClerk } from '@clerk/clerk-react'
3232

@@ -53,7 +53,7 @@ To enable multi-session in your application, you need to configure it in the Cle
5353

5454
## Switch between sessions
5555

56-
<CodeBlockTabs options={["React", "JavaScript", "iOS (beta)"]}>
56+
<CodeBlockTabs options={["React", "JavaScript", "iOS"]}>
5757
```jsx
5858
import { useClerk } from '@clerk/clerk-react'
5959

@@ -97,7 +97,7 @@ For more information on how Clerk's sign-in flow works, see the [detailed sign-i
9797

9898
Use [`signOut()`](/docs/references/javascript/clerk#sign-out) to deactivate all sessions on the current client.
9999

100-
<CodeBlockTabs options={["React", "JavaScript", "iOS (beta)"]}>
100+
<CodeBlockTabs options={["React", "JavaScript", "iOS"]}>
101101
```jsx
102102
import { useClerk } from '@clerk/clerk-react'
103103

@@ -122,7 +122,7 @@ Use [`signOut()`](/docs/references/javascript/clerk#sign-out) to deactivate all
122122

123123
Use [`signOut()`](/docs/references/javascript/clerk#sign-out) to deactivate a specific session by passing the session ID.
124124

125-
<CodeBlockTabs options={["React", "JavaScript", "iOS (beta)"]}>
125+
<CodeBlockTabs options={["React", "JavaScript", "iOS"]}>
126126
```jsx
127127
import { useClerk } from '@clerk/clerk-react'
128128

docs/custom-flows/oauth-connections.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ You must configure your application instance through the Clerk Dashboard for the
1111

1212
## Create the sign-up and sign-in flow
1313

14-
<Tabs items={["Next.js", "Expo", "iOS (beta)"]}>
14+
<Tabs items={["Next.js", "Expo", "iOS"]}>
1515
<Tab>
1616
<Include src="_partials/custom-flows/sso-connections" />
1717

docs/custom-flows/sign-out.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ The `signOut()` function signs a user out of all sessions in a [multi-session ap
1212
> [!NOTE]
1313
> The sign-out flow deactivates only the current session. Other valid sessions associated with the same user (e.g., if the user is signed in on another device) will remain active.
1414
15-
<Tabs items={["Next.js", "JavaScript", "Expo", "iOS (beta)"]}>
15+
<Tabs items={["Next.js", "JavaScript", "Expo", "iOS"]}>
1616
<Tab>
1717
The [`useClerk()`](/docs/hooks/use-clerk) hook is used to access the `signOut()` function, which is called when the user clicks the sign-out button.
1818

docs/index.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Find all the guides and resources you need to develop with Clerk.
6565

6666
---
6767

68-
- [iOS (beta)](/docs/quickstarts/ios)
68+
- [iOS](/docs/quickstarts/ios)
6969
- Use the Clerk iOS SDK to authenticate users in your native Apple applications.
7070
- {<Include src="_partials/icons/ios" />}
7171

docs/quickstarts/ios.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: iOS Quickstart (beta)
2+
title: iOS Quickstart
33
description: Add authentication and user management to your iOS app with Clerk.
44
---
55

docs/quickstarts/overview.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ description: See the getting started guides and tutorials.
6262

6363
---
6464

65-
- [iOS (beta)](/docs/quickstarts/ios)
65+
- [iOS](/docs/quickstarts/ios)
6666
- Use the Clerk iOS SDK to authenticate users in your native Apple applications.
6767
- {<Include src="_partials/icons/ios" />}
6868

docs/references/ios/overview.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Clerk iOS SDK (beta)
3-
description: The Clerk iOS SDK gives you access to prebuilt components, React hooks, and helpers to make user authentication easier.
2+
title: Clerk iOS SDK
3+
description: The Clerk iOS SDK provides a set of tools and utilities for handling authentication and user management.
44
---
55

66
The Clerk iOS SDK provides a set of tools and utilities for handling authentication and user management. Refer to the [quickstart guide](/docs/quickstarts/ios) to get started.

docs/references/overview.mdx

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ description: Learn about the Clerk and community SDK's available for integrating
3838

3939
---
4040

41-
- [iOS (beta)](/docs/references/ios/overview)
41+
- [iOS](/docs/references/ios/overview)
4242
- Use the Clerk iOS SDK to authenticate users in your native Apple applications.
4343
- {<Include src="_partials/icons/ios" />}
4444

0 commit comments

Comments
 (0)