From 5bfa0d736fbc2d2582c19f23f443ff8574dbd970 Mon Sep 17 00:00:00 2001 From: ping-maxwell Date: Thu, 20 Nov 2025 06:57:52 +1000 Subject: [PATCH] docs(twitter): document "no email" warning for twitter Twitch does not require users to have an email on their account, causing users to not be able to sign up. This PR adds a warning to our docs regarding such. --- docs/content/docs/authentication/twitch.mdx | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/docs/content/docs/authentication/twitch.mdx b/docs/content/docs/authentication/twitch.mdx index 0bc45cd5f3..56842897a0 100644 --- a/docs/content/docs/authentication/twitch.mdx +++ b/docs/content/docs/authentication/twitch.mdx @@ -30,7 +30,9 @@ description: Twitch provider setup and usage. ### Sign In with Twitch - To sign in with Twitch, you can use the `signIn.social` function provided by the client. The `signIn` function takes an object with the following properties: + To sign in with Twitch, you can use the `signIn.social` function provided by the client. + The `signIn` function takes an object with the following properties: + - `provider`: The provider to use. It should be set to `twitch`. ```ts title="auth-client.ts" @@ -43,5 +45,9 @@ description: Twitch provider setup and usage. }) } ``` + + + Twitch users who do not have an email address will not be able to sign in. +