X-Git-Url: https://git.r.bdr.sh/rbdr/forum/blobdiff_plain/a7cf03c192470cbab13edeb1aec99e0c66dede10..377653d56eb7af7498ceebc224d6bc45f32f0ae0:/src/lib/stores/forums.ts diff --git a/src/lib/stores/forums.ts b/src/lib/stores/forums.ts index cb62b5a..ab02066 100644 --- a/src/lib/stores/forums.ts +++ b/src/lib/stores/forums.ts @@ -1,5 +1,6 @@ import { store } from './apollo'; import { GET_FORUM, GET_FORUMS } from '$lib/data/queries'; -export const getForum = (id: string) => store({ key: 'forum', query: GET_FORUM, variables: { id } }); +export const getForum = (id: string) => + store({ key: 'forum', query: GET_FORUM, variables: { id } }); export const getForums = () => store({ key: 'forums', query: GET_FORUMS, initialValue: [] });