From 6a26d849daada0fc97b6df39ec515fe82c97a8d1 Mon Sep 17 00:00:00 2001 From: Caleb Pollman Date: Mon, 13 Jan 2025 12:57:01 -0800 Subject: [PATCH] chore(docs): update react web Authenticator hideSignUp example (#6290) --- .../authenticator/configuration/hidesignup.web.mdx | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/docs/src/pages/[platform]/connected-components/authenticator/configuration/hidesignup.web.mdx b/docs/src/pages/[platform]/connected-components/authenticator/configuration/hidesignup.web.mdx index 8fc95acbf23..a2aac04ed44 100644 --- a/docs/src/pages/[platform]/connected-components/authenticator/configuration/hidesignup.web.mdx +++ b/docs/src/pages/[platform]/connected-components/authenticator/configuration/hidesignup.web.mdx @@ -11,8 +11,16 @@ The Authenticator has an option to hide the sign up page including the `Create A ``` - ```tsx{3} - + **`Authenticator` Example:** + ```tsx{3} + + + + ``` + + **`withAuthenticator` Example:** + ```tsx{3} + withAuthenticator(App, { hideSignUp: true }); ```