From 5cbd5515d3190e70f4635fbc82a48440cf9a621b Mon Sep 17 00:00:00 2001 From: Bossiara13 <236771060+DmitryBykov-ISPO@users.noreply.github.com> Date: Mon, 27 Apr 2026 20:40:47 +0300 Subject: [PATCH] chore(gui): drop unused tg/boosty/patreon entries from appInfo store --- frontend/src/stores.ts | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/frontend/src/stores.ts b/frontend/src/stores.ts index 51603ed..53a2903 100644 --- a/frontend/src/stores.ts +++ b/frontend/src/stores.ts @@ -40,11 +40,8 @@ export const assistantVoice = writable("") // ### APP INFO export const appInfo = writable({ - tgOfficialLink: "", feedbackLink: "", repositoryLink: "", - boostySupportLink: "", - patreonSupportLink: "", logFilePath: "" }) @@ -60,21 +57,15 @@ export async function loadVoiceSetting() { export async function loadAppInfo() { try { - const [tg, feedback, repo, boosty, patreon, logPath] = await Promise.all([ - invoke("get_tg_official_link"), + const [feedback, repo, logPath] = await Promise.all([ invoke("get_feedback_link"), invoke("get_repository_link"), - invoke("get_boosty_link"), - invoke("get_patreon_link"), invoke("get_log_file_path") ]) appInfo.set({ - tgOfficialLink: tg, feedbackLink: feedback, repositoryLink: repo, - boostySupportLink: boosty, - patreonSupportLink: patreon, logFilePath: logPath }) } catch (err) {