From 41cc4da1911db20a4f62142d8cccc3ef6089bd2a Mon Sep 17 00:00:00 2001 From: Mihai Lemnaru Date: Sat, 15 Feb 2025 23:17:36 +0200 Subject: [PATCH] docs:fixed typo Signed-off-by: Mihai Lemnaru --- docs/auth/identity-resolver--old.md | 2 +- docs/auth/identity-resolver.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/auth/identity-resolver--old.md b/docs/auth/identity-resolver--old.md index c1659f46d8..f6310ace64 100644 --- a/docs/auth/identity-resolver--old.md +++ b/docs/auth/identity-resolver--old.md @@ -140,7 +140,7 @@ export default async function createPlugin( const { profile: { email }, } = info; - // Profiles are not always guaranteed to to have an email address. + // Profiles are not always guaranteed to have an email address. // You can also find more provider-specific information in `info.result`. // It typically contains a `fullProfile` object as well as ID and/or access // tokens that you can use for additional lookups. diff --git a/docs/auth/identity-resolver.md b/docs/auth/identity-resolver.md index 293300f429..84e8726042 100644 --- a/docs/auth/identity-resolver.md +++ b/docs/auth/identity-resolver.md @@ -256,7 +256,7 @@ an example: async signInResolver(info, ctx) { const { profile: { email } } = info; - // Profiles are not always guaranteed to to have an email address. + // Profiles are not always guaranteed to have an email address. // You can also find more provider-specific information in `info.result`. // It typically contains a `fullProfile` object as well as ID and/or access // tokens that you can use for additional lookups.