From fcf4f2ba551397481c3829575164e26ba252c0a7 Mon Sep 17 00:00:00 2001 From: Johnny Gear Date: Mon, 9 Mar 2026 11:50:50 -0500 Subject: [PATCH] Reorder Dashboard --- web/vite/src/Dashboard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/vite/src/Dashboard.tsx b/web/vite/src/Dashboard.tsx index 50303be..5fb5637 100644 --- a/web/vite/src/Dashboard.tsx +++ b/web/vite/src/Dashboard.tsx @@ -68,9 +68,9 @@ export const Dashboard: React.FC = () => { return ( <> + {timeline.length > 0 ? : null} {subs.length > 0 ? : null} - {timeline.length > 0 ? : null} ); };