diff --git a/docs/framework/react/guides/advanced-ssr.md b/docs/framework/react/guides/advanced-ssr.md index aabadb0e32..f51d806e6e 100644 --- a/docs/framework/react/guides/advanced-ssr.md +++ b/docs/framework/react/guides/advanced-ssr.md @@ -471,7 +471,7 @@ export default function PostsPage() { // look ma, no await queryClient.prefetchQuery({ queryKey: ['posts'], - queryFn: () => getPosts().then(serialize), // <-- serilize the data on the server + queryFn: () => getPosts().then(serialize), // <-- serialize the data on the server }) return ( diff --git a/docs/framework/vue/devtools.md b/docs/framework/vue/devtools.md index eadb855451..a58aa9995a 100644 --- a/docs/framework/vue/devtools.md +++ b/docs/framework/vue/devtools.md @@ -70,7 +70,7 @@ To make it work, you only need to enable it in the plugin options: ```ts app.use(VueQueryPlugin, { - enableDevtoolsV6Plugin: true + enableDevtoolsV6Plugin: true, }) ```