File tree Expand file tree Collapse file tree
packages/component/src/Middleware/ActivityGrouping/ui Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ const renderActivityGroupingPropsSchema = pipe(
1717
1818type RenderActivityGroupingProps = Readonly < InferInput < typeof renderActivityGroupingPropsSchema > > ;
1919
20- const RenderActivityGrouping = ( props : RenderActivityGroupingProps ) => {
20+ function RenderActivityGrouping ( props : RenderActivityGroupingProps ) {
2121 const { activities } = validateProps ( renderActivityGroupingPropsSchema , props ) ;
2222
2323 const [ activityRendererMap ] = useActivityRendererMap ( ) ;
@@ -34,9 +34,7 @@ const RenderActivityGrouping = (props: RenderActivityGroupingProps) => {
3434 } ) }
3535 </ Fragment >
3636 ) ;
37- } ;
38-
39- RenderActivityGrouping . displayName = 'RenderActivityGrouping' ;
37+ }
4038
4139export default memo ( RenderActivityGrouping ) ;
4240export { renderActivityGroupingPropsSchema , type RenderActivityGroupingProps } ;
You can’t perform that action at this time.
0 commit comments