diff options
Diffstat (limited to 'src/stores/forums.js')
| -rw-r--r-- | src/stores/forums.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stores/forums.js b/src/stores/forums.js index 583b0d3..39822a3 100644 --- a/src/stores/forums.js +++ b/src/stores/forums.js @@ -1,4 +1,4 @@ import { store } from './apollo'; import { GET_FORUMS } from '$/data/queries'; -export const forums = store({ key: 'forums', query: GET_FORUMS, initialValue: [] }); +export const getForums = () => store({ key: 'forums', query: GET_FORUMS, initialValue: [] }); |