From 98e65b220aef8c315222024a19eabb6d0fd55fad Mon Sep 17 00:00:00 2001 From: Evy Kassirer Date: Sat, 28 Jun 2025 18:51:44 -0700 Subject: [PATCH] stream_list: Remove unneeded export on scroll_stream_into_view. --- web/src/stream_list.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/stream_list.ts b/web/src/stream_list.ts index ac35fe15fb..fdb584e7e9 100644 --- a/web/src/stream_list.ts +++ b/web/src/stream_list.ts @@ -1110,7 +1110,7 @@ export function toggle_filter_displayed(e: JQuery.ClickEvent): void { e.preventDefault(); } -export function scroll_stream_into_view($stream_li: JQuery): void { +function scroll_stream_into_view($stream_li: JQuery): void { const $container = $("#left_sidebar_scroll_container"); if ($stream_li.length !== 1) {