From 4c27e53c85f8d4657c6c8a0cee284e25951a2a0b Mon Sep 17 00:00:00 2001 From: llama Date: Sat, 18 Oct 2025 17:36:12 +0800 Subject: [PATCH] remove unused stores --- qt/launcher-gui/src/routes/stores.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/qt/launcher-gui/src/routes/stores.ts b/qt/launcher-gui/src/routes/stores.ts index e0a603c62..4a5b4233c 100644 --- a/qt/launcher-gui/src/routes/stores.ts +++ b/qt/launcher-gui/src/routes/stores.ts @@ -6,9 +6,4 @@ import * as _tr from "@generated/ftl-launcher"; import { writable } from "svelte/store"; export const zoomFactor = writable(1.2); -export const langsStore = writable([]); -export const mirrorsStore = writable([]); -export const currentLang = writable(""); -export const initialLang = writable(""); -export const versionsStore = writable(undefined); export const tr = writable(_tr);