We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66ee998 commit 41dde08Copy full SHA for 41dde08
apps/framework-docs-v2/src/components/ui/command.tsx
@@ -20,7 +20,10 @@ const Command = React.forwardRef<
20
)}
21
{...props}
22
/>
23
-));
+)) as React.ForwardRefExoticComponent<
24
+ React.ComponentPropsWithoutRef<typeof CommandPrimitive> &
25
+ React.RefAttributes<React.ElementRef<typeof CommandPrimitive>>
26
+>;
27
Command.displayName = CommandPrimitive.displayName;
28
29
const CommandDialog = ({ children, ...props }: DialogProps) => {
0 commit comments