diff options
Diffstat (limited to 'src/stores/post.js')
| -rw-r--r-- | src/stores/post.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stores/post.js b/src/stores/post.js index ed19cd6..0cbf1d5 100644 --- a/src/stores/post.js +++ b/src/stores/post.js @@ -1,4 +1,4 @@ import { store } from './apollo'; -import { GET_POST } from '$data/queries'; +import { GET_POST } from '$/data/queries'; export const getPost = (id) => store({ key: 'post', query: GET_POST, variables: { id } }); |