From 509e1f008308f40d47ac6821967ea36d179b40fa Mon Sep 17 00:00:00 2001 From: Mike Cao Date: Fri, 13 Feb 2026 18:21:18 -0800 Subject: [PATCH] Changed out logo. --- src/app/(main)/SideNav.tsx | 4 ++-- src/app/(main)/dashboard/DashboardViewPage.tsx | 8 +++----- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/src/app/(main)/SideNav.tsx b/src/app/(main)/SideNav.tsx index 7da6e5643..da40d4877 100644 --- a/src/app/(main)/SideNav.tsx +++ b/src/app/(main)/SideNav.tsx @@ -18,9 +18,9 @@ import { Globe, Grid2x2, LayoutDashboard, - LayoutGrid, LinkIcon, PanelLeft, + PanelsLeftBottom, } from '@/components/icons'; import { UserButton } from '@/components/input/UserButton'; import { Logo } from '@/components/svg'; @@ -37,7 +37,7 @@ export function SideNav(props: any) { id: 'dashboard', label: t(labels.dashboard), path: '/dashboard', - icon: , + icon: , }, ] : []), diff --git a/src/app/(main)/dashboard/DashboardViewPage.tsx b/src/app/(main)/dashboard/DashboardViewPage.tsx index 1ed1977ac..c6749fd35 100644 --- a/src/app/(main)/dashboard/DashboardViewPage.tsx +++ b/src/app/(main)/dashboard/DashboardViewPage.tsx @@ -2,7 +2,7 @@ import { Column } from '@umami/react-zen'; import { useEffect } from 'react'; import { BoardViewBody } from '@/app/(main)/boards/[boardId]/BoardViewBody'; -import { EmptyPlaceholder } from '@/components/common/EmptyPlaceholder'; +import { Empty } from '@/components/common/Empty'; import { PageBody } from '@/components/common/PageBody'; import { useBoard, useMessages, useNavigation } from '@/components/hooks'; import { DashboardProvider } from './DashboardProvider'; @@ -10,14 +10,12 @@ import { DashboardViewHeader } from './DashboardViewHeader'; function DashboardContent() { const { board } = useBoard(); - const { t, labels, messages } = useMessages(); + const { t, messages } = useMessages(); const rows = board?.parameters?.rows ?? []; const hasComponents = rows.some(row => row.columns?.some(column => !!column.component)); if (!hasComponents) { - return ( - - ); + return ; } return ;