From d8936c83201d3c7ec9d4c92c052e68dc94acf268 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sat, 28 Jan 2023 03:56:30 -0800 Subject: [PATCH] Add function name --- components/DropdownMenuContent/index.tsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/components/DropdownMenuContent/index.tsx b/components/DropdownMenuContent/index.tsx index 3e472872..37a47f5e 100644 --- a/components/DropdownMenuContent/index.tsx +++ b/components/DropdownMenuContent/index.tsx @@ -14,7 +14,10 @@ export const DropdownMenuGroup = DropdownMenuPrimitive.Group export const DropdownMenuSeparator = DropdownMenuPrimitive.Separator export const DropdownMenuContent = React.forwardRef( - ({ children, ...props }: PropsWithChildren, forwardedRef) => { + function dropdownMenuContent( + { children, ...props }: PropsWithChildren, + forwardedRef + ) { const classes = classNames(props.className, { Menu: true, })