Skip to content

Commit c029064

Browse files
committed
chore: add react native to filters
1 parent 7fd2d32 commit c029064

File tree

2 files changed

+4
-4
lines changed
  • src/pages/[platform]/build-a-backend/auth/connect-your-frontend

2 files changed

+4
-4
lines changed

src/pages/[platform]/build-a-backend/auth/connect-your-frontend/sign-in/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ func signIn(username: String, password: String) -> AnyCancellable {
253253

254254
The `signIn` API response will include a `nextStep` property, which can be used to determine if further action is required. It may return the following next steps:
255255

256-
<InlineFilter filters={["angular", "javascript", "react", "nextjs", "vue"]}>
256+
<InlineFilter filters={["angular", "javascript", "react", "react-native", "nextjs", "vue"]}>
257257
| Next Step | Description |
258258
| --------- | ----------- |
259259
| `CONFIRM_SIGN_IN_WITH_NEW_PASSWORD_REQUIRED` | The user was created with a temporary password and must set a new one. Complete the process with `confirmSignIn`. |
@@ -582,7 +582,7 @@ func signUp(username: String, password: String, email: String, phonenumber: Stri
582582

583583
### Confirm sign-in
584584

585-
<InlineFilter filters={["angular", "javascript", "react", "nextjs", "vue"]}>
585+
<InlineFilter filters={["angular", "javascript", "react", "react-native", "nextjs", "vue"]}>
586586
Following sign in, you will receive a `nextStep` in the sign-in result of one of the following types. Collect the user response and then pass to the `confirmSignIn` API to complete the sign in flow.
587587
| Next Step | Description |
588588
| --------- | ----------- |

src/pages/[platform]/build-a-backend/auth/connect-your-frontend/sign-up/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ func signUp(username: String, password: String, email: String, phonenumber: Stri
285285

286286
The `signUp` API response will include a `nextStep` property, which can be used to determine if further action is required. It may return the following next steps:
287287

288-
<InlineFilter filters={["angular", "javascript", "react", "nextjs", "vue"]}>
288+
<InlineFilter filters={["angular", "javascript", "react", "react-native", "nextjs", "vue"]}>
289289
| Next Step | Description |
290290
| --------- | ----------- |
291291
| `CONFIRM_SIGN_UP` | The sign up needs to be confirmed by collecting a code from the user and calling `confirmSignUp`. |
@@ -319,7 +319,7 @@ By default, each user that signs up remains in the unconfirmed status until they
319319

320320
You can confirm the sign-up after receiving a confirmation code from the user:
321321

322-
<InlineFilter filters={["angular", "javascript", "react", "nextjs", "vue"]}>
322+
<InlineFilter filters={["angular", "javascript", "react", "react-native", "nextjs", "vue"]}>
323323

324324
```ts
325325
import { confirmSignUp } from 'aws-amplify/auth';

0 commit comments

Comments
 (0)