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) {