From 7233fb5fbf38af5b2f159850b8d386fdba533c3e Mon Sep 17 00:00:00 2001 From: IsraelGPT Date: Sun, 15 Feb 2026 11:30:04 +0000 Subject: [PATCH] fix Discord and Download link are visible even if not activated in home menu --- js/storage.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/storage.js b/js/storage.js index 6f97089..1953feb 100644 --- a/js/storage.js +++ b/js/storage.js @@ -1415,9 +1415,9 @@ export const sidebarSectionSettings = { { id: 'sidebar-nav-donate', check: this.shouldShowDonate() }, { id: 'sidebar-nav-settings', check: this.shouldShowSettings() }, { id: 'sidebar-nav-account', check: this.shouldShowAccount() }, - { id: 'sidebar-nav-about', check: this.shouldShowAbout() }, - { id: 'sidebar-nav-download', check: this.shouldShowDownload() }, - { id: 'sidebar-nav-discord', check: this.shouldShowDiscord() }, + { id: 'sidebar-nav-about-bottom', check: this.shouldShowAbout() }, + { id: 'sidebar-nav-download-bottom', check: this.shouldShowDownload() }, + { id: 'sidebar-nav-discordbtn', check: this.shouldShowDiscord() }, ]; items.forEach(({ id, check }) => {