diff --git a/apps/nextjs/src/components/board/sections/category-section.tsx b/apps/nextjs/src/components/board/sections/category-section.tsx index edd863671..31a3ff109 100644 --- a/apps/nextjs/src/components/board/sections/category-section.tsx +++ b/apps/nextjs/src/components/board/sections/category-section.tsx @@ -3,8 +3,10 @@ import { useDisclosure } from "@mantine/hooks"; import { IconChevronDown, IconChevronUp } from "@tabler/icons-react"; import type { CategorySection } from "~/app/[locale]/boards/_types"; +import { useRequiredBoard } from "~/app/[locale]/boards/(content)/_context"; import { CategoryMenu } from "./category/category-menu"; import { GridStack } from "./gridstack/gridstack"; +import classes from "./item.module.css"; interface Props { section: CategorySection; @@ -12,9 +14,10 @@ interface Props { export const BoardCategorySection = ({ section }: Props) => { const [opened, { toggle }] = useDisclosure(false); + const board = useRequiredBoard(); return ( - +