From c6427304ac5946054059fc4503ff4cccc5905f09 Mon Sep 17 00:00:00 2001 From: echo Date: Sat, 28 Feb 2026 20:02:52 +0100 Subject: [PATCH] feat: show live blog updates section open by default on homepage --- frontend/src/components/home/PinnedLiveBlogsSidebar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/home/PinnedLiveBlogsSidebar.tsx b/frontend/src/components/home/PinnedLiveBlogsSidebar.tsx index 77b8a17..a26e9d5 100644 --- a/frontend/src/components/home/PinnedLiveBlogsSidebar.tsx +++ b/frontend/src/components/home/PinnedLiveBlogsSidebar.tsx @@ -6,7 +6,7 @@ import { Calendar, Eye, MessageSquare, Pin, ChevronDown, ChevronUp, Clock } from import { useState } from 'react'; export function PinnedLiveBlogsSidebar() { - const [showUpdates, setShowUpdates] = useState(false); + const [showUpdates, setShowUpdates] = useState(true); const { data: liveBlogs, isLoading, error } = useQuery({ queryKey: ['pinned-live-blogs'],