Skip to content

Commit

Permalink
Fix CI/CD issues (#9499)
Browse files Browse the repository at this point in the history
* Fix a doc prettier issue

* Fix @urql/vue e2e test regression
  • Loading branch information
eddeee888 authored Jun 13, 2023
1 parent 2139f1d commit bbd1848
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion examples/vue/urql/src/main.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
import { createApp } from 'vue';
import urql from '@urql/vue';
import urql, { cacheExchange, fetchExchange } from '@urql/vue';
import App from './App.vue';

const app = createApp(App);

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

app.mount('#app');
5 changes: 3 additions & 2 deletions website/src/pages/docs/guides/react-vue.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -130,8 +130,9 @@ export default config
**Usage with `@tanstack/react-query`**

If you are using `@tanstack/react-query`, we recommend using it with `graphql-request@^5.0.0` to get the best developer experience.
<br/>
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.

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.

</Callout>

Expand Down

0 comments on commit bbd1848

Please sign in to comment.