From 53c05a3ef645cdb286c976dfa0f672c465814032 Mon Sep 17 00:00:00 2001 From: "G.Ambatte" Date: Tue, 17 Sep 2024 07:27:52 +1200 Subject: [PATCH] Remove unused default item --- client/homebrew/utils/versionHistory.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/client/homebrew/utils/versionHistory.js b/client/homebrew/utils/versionHistory.js index ef4cbe772..ad7c6102e 100644 --- a/client/homebrew/utils/versionHistory.js +++ b/client/homebrew/utils/versionHistory.js @@ -13,11 +13,6 @@ const DEFAULT_HISTORY_SAVE_DELAYS = { const DEFAULT_GARBAGE_COLLECT_DELAY = 28 * 24 * 60; -const DEFAULT_STORED_BREW = { - shareId : 'default_brew', - expireAt : '2000-01-01T00:00:00.000Z' -}; - const HISTORY_SAVE_DELAYS = global.config?.historyData?.HISTORY_SAVE_DELAYS ?? DEFAULT_HISTORY_SAVE_DELAYS; const GARBAGE_COLLECT_DELAY = global.config?.historyData?.GARBAGE_COLLECT_DELAY ?? DEFAULT_GARBAGE_COLLECT_DELAY;