Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import * as React from "react";
import { useRouter, usePathname } from "next/navigation";
import { SquareKanban, Bot, Settings, MessageSquare } from "lucide-react";
import { SquareKanban, Bot, Settings } from "lucide-react";
import { motion, AnimatePresence } from "framer-motion";

import { NavMain, type NavItem } from "./nav-main";
Expand Down Expand Up @@ -47,11 +47,6 @@ const SidebarNavContent = () => {
url: "/agents",
icon: Bot,
},
{
title: "Chat",
url: "/chat",
icon: MessageSquare,
},
{
title: "Settings",
url: "/settings",
Expand Down
8 changes: 0 additions & 8 deletions apps/web/src/app/(dashboard)/chat/page.tsx

This file was deleted.

5 changes: 2 additions & 3 deletions apps/web/src/app/(dashboard)/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,8 @@ type DashboardLayoutProps = {
header: React.ReactNode;
};

// Routes that handle their own scrolling (e.g., kanban board, chat)
const isFullHeightRoute = (path: string) =>
path === "/board" || path === "/chat";
// Routes that handle their own scrolling (e.g., kanban board)
const isFullHeightRoute = (path: string) => path === "/board";

// Routes that handle their own padding
const isNoPaddingRoute = (path: string) => path === "/board";
Expand Down