diff --git a/components/sidebar/tool-group.tsx b/components/sidebar/tool-group.tsx
index bad9fed..f3f5df0 100644
--- a/components/sidebar/tool-group.tsx
+++ b/components/sidebar/tool-group.tsx
@@ -5,6 +5,7 @@ import { usePathname } from "next/navigation";
import * as Accordion from "@radix-ui/react-accordion";
import { ToolGroup as IToolGroup } from "@/config/tools";
+import { cn } from "@/lib/style";
import { icons } from "@/components/icons";
import { ToolLink } from "./tool-link";
@@ -38,14 +39,24 @@ export function ToolGroup({ Icon, title, href, tools, isOpend }: Props) {
/>
svg]:rotate-180"
+ )}
aria-label="toggle open/close state of the tool group"
>
-
+
{Object.values(tools).map(tool => (
-
diff --git a/components/sidebar/tool-link.tsx b/components/sidebar/tool-link.tsx
index a0e867e..783fcfe 100644
--- a/components/sidebar/tool-link.tsx
+++ b/components/sidebar/tool-link.tsx
@@ -16,8 +16,9 @@ function RawToolLink({ Icon, shortTitle: title, href, onClick, className, highli
return (
(({ className, ..
diff --git a/components/ui/textarea.tsx b/components/ui/textarea.tsx
index 6706449..3d2c510 100644
--- a/components/ui/textarea.tsx
+++ b/components/ui/textarea.tsx
@@ -10,7 +10,11 @@ export const RawTextarea = React.forwardRef(