diff options
Diffstat (limited to 'src/stores/actions.js')
| -rw-r--r-- | src/stores/actions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stores/actions.js b/src/stores/actions.js index ae01906..f7fbc28 100644 --- a/src/stores/actions.js +++ b/src/stores/actions.js @@ -4,7 +4,7 @@ import { derived, writable } from 'svelte/store'; * This is a store to set the actions in the top header. */ -export const actions = writable({}); +const actions = writable({}); export const enableTopicActions = (id) => { |