{icon}
{title}
@@ -32,18 +28,12 @@ export function Collapsible({ title, children, description, defaultOpen = false,
})}
/>
- {description && (
-
- {description}
-
- )}
+ {description &&
{description}
}
{isOpen && (
-
- {children}
-
+
{children}
)}
)
-}
\ No newline at end of file
+}
diff --git a/src/site/src/components/ui/command.tsx b/src/site/src/components/ui/command.tsx
index 31f8f922..db170f30 100644
--- a/src/site/src/components/ui/command.tsx
+++ b/src/site/src/components/ui/command.tsx
@@ -1,9 +1,8 @@
-import * as React from "react"
import { Command as CommandPrimitive } from "cmdk"
import { SearchIcon } from "lucide-react"
-
-import { cn } from "@/lib/utils"
+import type * as React from "react"
import { Dialog, DialogContent, DialogDescription, DialogHeader, DialogTitle } from "@/components/ui/dialog"
+import { cn } from "@/lib/utils"
function Command({ className, ...props }: React.ComponentProps