File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/store/reducers/overview Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -107,7 +107,7 @@ export function useGetMultiOverviewQuery({
107107 ) ;
108108
109109 const {
110- currentData : currentChindrenDescribe = [ ] ,
110+ currentData : currentChindrenDescribe ,
111111 isFetching : childrenDescribeIsFetching ,
112112 error : childrenDescribeError ,
113113 } = overviewApi . useGetMultiOverviewQuery (
@@ -123,7 +123,7 @@ export function useGetMultiOverviewQuery({
123123
124124 const loading = mainDescribeLoading || childrenDescribeLoading ;
125125
126- const describe = [ mainDescribe , ...currentChindrenDescribe ] ;
126+ const describe = [ mainDescribe , ...( currentChindrenDescribe ?? [ ] ) ] ;
127127
128128 const mergedDescribe = describe . reduce < IDescribeData > ( ( acc , item ) => {
129129 if ( item ?. Path ) {
You can’t perform that action at this time.
0 commit comments