From c5525bb9804dd0e6c0e8687ecba78f22ea319661 Mon Sep 17 00:00:00 2001 From: talksik Date: Wed, 1 Apr 2026 11:43:33 -0700 Subject: [PATCH] reduce footprint of closing indicator --- js/src/features/particles/stream-view.tsx | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/js/src/features/particles/stream-view.tsx b/js/src/features/particles/stream-view.tsx index 1e838a9..9f1d19d 100644 --- a/js/src/features/particles/stream-view.tsx +++ b/js/src/features/particles/stream-view.tsx @@ -371,6 +371,13 @@ function BottomBar({ layer="tracks" />
+ {exitRemainingMs !== null && ( +
+ + Closing in {Math.ceil(exitRemainingMs / 1000)}s + +
+ )} @@ -380,13 +387,6 @@ function BottomBar({
- {exitRemainingMs !== null && ( -
- - Closing in {Math.ceil(exitRemainingMs / 1000)}s - -
- )} );