diff --git a/apps/web/core/components/common/layout/sidebar/property-list-item.tsx b/apps/web/core/components/common/layout/sidebar/property-list-item.tsx index c518c80326..491c74e6c3 100644 --- a/apps/web/core/components/common/layout/sidebar/property-list-item.tsx +++ b/apps/web/core/components/common/layout/sidebar/property-list-item.tsx @@ -2,7 +2,7 @@ import type { ReactNode } from "react"; import { cn } from "@plane/utils"; type TSidebarPropertyListItemProps = { - icon: React.FC<{ className?: string }> | React.ReactNode; + icon: React.FC<{ className?: string }>; label: string; children: ReactNode; appendElement?: ReactNode; @@ -15,7 +15,7 @@ export function SidebarPropertyListItem(props: TSidebarPropertyListItemProps) { return (
- {typeof Icon === "function" ? : Icon} + {label} {appendElement}