From 799ff1d8d0610af8245eb0a6afca3a37925d2bc3 Mon Sep 17 00:00:00 2001 From: Gleb Mirzayev Date: Thu, 5 Oct 2023 08:45:27 -0400 Subject: [PATCH] docs: remove mentions of logoUrl (#1473) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Add streaming text example Signed-off-by: Mihovil Ilakovac * Updated diagram to be visible on dark mode (#1456) Added white background so the diagram in docs is visible also in dark background. * Update .gitattributes to not look at haskell files * docs: remove mentions of logoUrl --------- Signed-off-by: Mihovil Ilakovac Co-authored-by: Mihovil Ilakovac Co-authored-by: Boris Martinovic Co-authored-by: Martin Šošić --- web/docs/auth/social-auth/overview.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/web/docs/auth/social-auth/overview.md b/web/docs/auth/social-auth/overview.md index d80b4e5c3..9a89101e5 100644 --- a/web/docs/auth/social-auth/overview.md +++ b/web/docs/auth/social-auth/overview.md @@ -325,7 +325,7 @@ If you're looking for the fastest way to get your auth up and running, that's wh The UI helpers described below are lower-level and are useful for creating your custom forms. ::: -Wasp provides sign-in buttons, logos and URLs for each of the supported social login providers. +Wasp provides sign-in buttons and URLs for each of the supported social login providers. @@ -334,12 +334,10 @@ Wasp provides sign-in buttons, logos and URLs for each of the supported social l import { SignInButton as GoogleSignInButton, signInUrl as googleSignInUrl, - logoUrl as googleLogoUrl, } from '@wasp/auth/helpers/Google' import { SignInButton as GitHubSignInButton, signInUrl as gitHubSignInUrl, - logoUrl as gitHubLogoUrl, } from '@wasp/auth/helpers/GitHub' export const LoginPage = () => { @@ -362,12 +360,10 @@ export const LoginPage = () => { import { SignInButton as GoogleSignInButton, signInUrl as googleSignInUrl, - logoUrl as googleLogoUrl, } from '@wasp/auth/helpers/Google' import { SignInButton as GitHubSignInButton, signInUrl as gitHubSignInUrl, - logoUrl as gitHubLogoUrl, } from '@wasp/auth/helpers/GitHub' export const LoginPage = () => {