From 408ef006a74baae1d9a4b400a4428d3c267f195b Mon Sep 17 00:00:00 2001 From: Oscar Fuentes Date: Sun, 15 Aug 2021 18:06:47 -0700 Subject: [PATCH] doc: fix typo Given the context of the surrounding sentence, I believe the intention here was to use the word `increasing`. --- docs/authentication.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/authentication.md b/docs/authentication.md index 4dd8981496a0559..f0170d95cdc1549 100644 --- a/docs/authentication.md +++ b/docs/authentication.md @@ -101,7 +101,7 @@ const Profile = ({ user }) => { export default Profile ``` -An advantage of this pattern is preventing a flash of unauthenticated content before redirecting. It's important to note fetching user data in `getServerSideProps` will block rendering until the request to your authentication provider resolves. To prevent creating a bottleneck and decreasing your TTFB ([Time to First Byte](https://web.dev/time-to-first-byte/)), you should ensure your authentication lookup is fast. Otherwise, consider [static generation](#authenticating-statically-generated-pages). +An advantage of this pattern is preventing a flash of unauthenticated content before redirecting. It's important to note fetching user data in `getServerSideProps` will block rendering until the request to your authentication provider resolves. To prevent creating a bottleneck and increasing your TTFB ([Time to First Byte](https://web.dev/time-to-first-byte/)), you should ensure your authentication lookup is fast. Otherwise, consider [static generation](#authenticating-statically-generated-pages). ## Authentication Providers