From b13942fbd5521ca88bb5bfb4e73c61ca4ec6995d Mon Sep 17 00:00:00 2001 From: Bill Thornton Date: Wed, 10 Sep 2025 16:27:18 -0400 Subject: [PATCH] Fix lodash import for tree-shaking --- src/components/listview/List/Lists.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/listview/List/Lists.tsx b/src/components/listview/List/Lists.tsx index 3a45be39c1..0df873533b 100644 --- a/src/components/listview/List/Lists.tsx +++ b/src/components/listview/List/Lists.tsx @@ -1,5 +1,5 @@ import React, { type FC } from 'react'; -import { groupBy } from 'lodash-es'; +import groupBy from 'lodash-es/groupBy'; import Box from '@mui/material/Box'; import { getIndex } from './listHelper'; import ListGroupHeaderWrapper from './ListGroupHeaderWrapper';