From edcf35a5db4c602858a98e14de070f14560a98e4 Mon Sep 17 00:00:00 2001 From: Jonas <jonas.zohren@tu-dortmund.de> Date: Wed, 10 Mar 2021 17:56:56 +0100 Subject: [PATCH] Remove useless debug fact --- src/gameFacts.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/gameFacts.ts b/src/gameFacts.ts index 8816367..d506af2 100644 --- a/src/gameFacts.ts +++ b/src/gameFacts.ts @@ -1,9 +1,7 @@ import { writable } from "svelte-local-storage-store"; import type { Writable } from "svelte/store"; -export const gameFactsStore: Writable<String[]> = writable("gameFacts", [ - "debugRequiredFact", -]); +export const gameFactsStore: Writable<String[]> = writable("gameFacts", []); export function addGameFactToFactArray( gameFact: String, -- GitLab