Skip to content

Commit

Permalink
Run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
lachlancollins committed Jul 21, 2023
1 parent 6050efb commit 1493fc7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions integrations/vue-vite/src/App.vue
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<script setup>
import { useQuery } from '@tanstack/vue-query'
import { useQuery } from '@tanstack/vue-query'
const { isPending, isError, data } = useQuery({
queryKey: ['test'],
queryFn: async () => {
await new Promise((r) => setTimeout(r, 1000))
return 'Success'
},
})
const { isPending, isError, data } = useQuery({
queryKey: ['test'],
queryFn: async () => {
await new Promise((r) => setTimeout(r, 1000))
return 'Success'
},
})
</script>

<template>
Expand Down

0 comments on commit 1493fc7

Please sign in to comment.