Skip to content

Commit bbd1848

Browse files
authored
Fix CI/CD issues (#9499)
* Fix a doc prettier issue * Fix @urql/vue e2e test regression
1 parent 2139f1d commit bbd1848

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

examples/vue/urql/src/main.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
import { createApp } from 'vue';
2-
import urql from '@urql/vue';
2+
import urql, { cacheExchange, fetchExchange } from '@urql/vue';
33
import App from './App.vue';
44

55
const app = createApp(App);
66

77
app.use(urql, {
88
url: 'https://swapi-graphql.netlify.app/.netlify/functions/index',
9+
exchanges: [cacheExchange, fetchExchange],
910
});
1011

1112
app.mount('#app');

website/src/pages/docs/guides/react-vue.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,9 @@ export default config
130130
**Usage with `@tanstack/react-query`**
131131

132132
If you are using `@tanstack/react-query`, we recommend using it with `graphql-request@^5.0.0` to get the best developer experience.
133-
<br/>
134-
If you are willing to provide your own fetcher, you can directly jump to the ["Appendix I: React Query with a custom fetcher setup"](#appendix-i-react-query-with-a-custom-fetcher-setup) and continue the guide once React Query is properly setup.
133+
134+
If you are willing to provide your own fetcher, you can directly jump to the ["Appendix I: React Query with a custom fetcher
135+
setup"](#appendix-i-react-query-with-a-custom-fetcher-setup) and continue the guide once React Query is properly setup.
135136

136137
</Callout>
137138

0 commit comments

Comments
 (0)