opencode-agent[bot] 2 месяцев назад
Родитель
Сommit
3b18c64782
1 измененных файлов с 1 добавлено и 3 удалено
  1. 1 3
      packages/app/src/components/ui/drawer.tsx

+ 1 - 3
packages/app/src/components/ui/drawer.tsx

@@ -92,9 +92,7 @@ type DrawerDescriptionProps<T extends ValidComponent = "div"> = DescriptionProps
   class?: string
 }
 
-const DrawerDescription = <T extends ValidComponent = "div">(
-  props: DynamicProps<T, DrawerDescriptionProps<T>>,
-) => {
+const DrawerDescription = <T extends ValidComponent = "div">(props: DynamicProps<T, DrawerDescriptionProps<T>>) => {
   const [, rest] = splitProps(props as DrawerDescriptionProps, ["class"])
   return (
     <DrawerPrimitive.Description