From fbe7285af8163fb2e2ea0afb36a6645512bb779e Mon Sep 17 00:00:00 2001 From: Rinwaoluwa Date: Sun, 7 Jan 2024 20:28:04 +0100 Subject: [PATCH] left_sidebar: Remove export in deselect_top_left_corner_items. It is safe to remove the export, because deselect_top_left_corner_items isn't called anywhere else outside the file. --- web/src/left_sidebar_navigation_area.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/left_sidebar_navigation_area.js b/web/src/left_sidebar_navigation_area.js index 9793c52ce3..2e662920a7 100644 --- a/web/src/left_sidebar_navigation_area.js +++ b/web/src/left_sidebar_navigation_area.js @@ -76,7 +76,7 @@ function remove($elem) { $elem.removeClass("active-filter active-sub-filter"); } -export function deselect_top_left_corner_items() { +function deselect_top_left_corner_items() { remove($(".top_left_all_messages")); remove($(".top_left_starred_messages")); remove($(".top_left_mentions"));