diff --git a/website/src/pages/plugins/typescript/typescript-vue-apollo.mdx b/website/src/pages/plugins/typescript/typescript-vue-apollo.mdx
index a5294925cb5..bd3efd43d1c 100644
--- a/website/src/pages/plugins/typescript/typescript-vue-apollo.mdx
+++ b/website/src/pages/plugins/typescript/typescript-vue-apollo.mdx
@@ -77,7 +77,7 @@ query allAccounts {
}
```
-We can use the generated code with `useResult` like this:
+We can use the generated code with a watcher like this:
```vue
@@ -91,20 +91,15 @@ We can use the generated code with `useResult` like this:
-
-
```