From 50957bcd0ff950a85e5a8d781fe14e8da42f5c7b Mon Sep 17 00:00:00 2001 From: Jam <1347620+JamsRepos@users.noreply.github.com> Date: Thu, 2 May 2024 08:03:27 +0100 Subject: [PATCH] =?UTF-8?q?chore:=20=F0=9F=A7=BA=20Remove=20version=20gett?= =?UTF-8?q?er=20as=20not=20needed?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/wizarr-frontend/src/stores/server.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/apps/wizarr-frontend/src/stores/server.ts b/apps/wizarr-frontend/src/stores/server.ts index 0e5d0c49..817701ce 100644 --- a/apps/wizarr-frontend/src/stores/server.ts +++ b/apps/wizarr-frontend/src/stores/server.ts @@ -19,9 +19,6 @@ export const useServerStore = defineStore("server", { isBugReporting(state) { if (state.settings.bug_reporting === undefined) return true; return state.settings.bug_reporting === "true"; - }, - version(state) { - return state.version; } }, actions: {