From 26dfa00e2f4eddbdc71ae4d92ee5676f11413ada Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Mon, 3 May 2021 20:59:55 +0200 Subject: Add tests for actions + pacts for graphql errrors --- src/stores/actions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/stores/actions.js') 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) => { -- cgit