Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs: fix typo and remove unused imports (#3542)

authored by

Josh Daniel Bañares and committed by
GitHub
431b64b4 be9c72ab

+1 -3
+1 -3
docs/advanced/server-side-rendering.md
··· 196 196 ```ts 197 197 // app/page.tsx 198 198 import React from 'react'; 199 - import Head from 'next/head'; 200 199 import { cacheExchange, createClient, fetchExchange, gql } from '@urql/core'; 201 200 import { registerUrql } from '@urql/next/rsc'; 202 201 ··· 257 256 } 258 257 ``` 259 258 260 - It is important that we pas both a client as well as the `ssrExchange` to the `Provider` 259 + It is important that we pass both a client as well as the `ssrExchange` to the `Provider` 261 260 this way we will be able to restore the data that Next streams to the client later on 262 261 when we are hydrating. 263 262 ··· 358 357 ```js 359 358 // pages/index.js 360 359 import React from 'react'; 361 - import Head from 'next/head'; 362 360 import { useQuery } from 'urql'; 363 361 import { withUrqlClient } from 'next-urql'; 364 362