diff --git a/docs/content/1.get-started/5.tips/1.composables.md b/docs/content/1.get-started/5.tips/1.composables.md index bf89123..c1ba0d7 100644 --- a/docs/content/1.get-started/5.tips/1.composables.md +++ b/docs/content/1.get-started/5.tips/1.composables.md @@ -7,7 +7,7 @@ title: Composables It is often useful to wrap functionality of your `@trpc/client` api within other functions. For this purpose, it's necessary to be able to infer input types and output types generated by your `@trpc/server` router. ::alert{type="info"} -[createTRPCNuxtClient](/get-started/client/create) adds a `useQuery` method built on top of [useAsyncData](https://nuxt.com/docs/api/composables/use-async-data/). You might not need this. +[createTRPCNuxtClient](/get-started/client/create) already adds a `useQuery` method built on top of [useAsyncData](https://nuxt.com/docs/api/composables/use-async-data/). You might not need this. :: ## Inference Helpers