diff --git a/frontend/src/components/home/PinnedLiveBlogsSidebar.tsx b/frontend/src/components/home/PinnedLiveBlogsSidebar.tsx index a26e9d5..eead015 100644 --- a/frontend/src/components/home/PinnedLiveBlogsSidebar.tsx +++ b/frontend/src/components/home/PinnedLiveBlogsSidebar.tsx @@ -7,7 +7,7 @@ import { useState } from 'react'; export function PinnedLiveBlogsSidebar() { const [showUpdates, setShowUpdates] = useState(true); - + const { data: liveBlogs, isLoading, error } = useQuery({ queryKey: ['pinned-live-blogs'], queryFn: fetchPinnedLiveBlogs, @@ -67,7 +67,7 @@ export function PinnedLiveBlogsSidebar() { // Collect last 5 updates from all pinned live blogs const getLastFiveUpdates = () => { if (!liveBlogs) return []; - + const allUpdates: Array<{ id: string; content: string; @@ -160,7 +160,7 @@ export function PinnedLiveBlogsSidebar() { >
-

Последни Update

+

Свежо набрано

@@ -207,7 +207,7 @@ export function PinnedLiveBlogsSidebar() {
-

Pinned Live

+

Во Живо

{liveBlogs.length} @@ -280,7 +280,7 @@ export function PinnedLiveBlogsSidebar() {