From 74b03c33ff37d7363721bc2c33abb867dc9ea87c Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sun, 14 Mar 2021 23:10:01 +0100 Subject: Add components to view topics and posts --- src/stores/topic.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stores/topic.js') diff --git a/src/stores/topic.js b/src/stores/topic.js index 3225a83..c90f1a3 100644 --- a/src/stores/topic.js +++ b/src/stores/topic.js @@ -1,4 +1,4 @@ import { store } from './apollo'; -import { GET_TOPIC } from '$data/queries'; +import { GET_TOPIC } from '$/data/queries'; export const getTopic = (id) => store({ key: 'topic', query: GET_TOPIC, variables: { id } }); -- cgit