We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 295b00a commit d7ef99aCopy full SHA for d7ef99a
src/Cell/index.tsx
@@ -15,7 +15,7 @@ import { getPathValue } from '../utils/valueUtil';
15
function isRenderCell<RecordType>(
16
data: React.ReactNode | RenderedCell<RecordType>,
17
): data is RenderedCell<RecordType> {
18
- return data && typeof data === 'object' && !React.isValidElement(data);
+ return data && typeof data === 'object' && !Array.isArray(data) && !React.isValidElement(data);
19
}
20
21
function isRefComponent(component: CustomizeComponent) {
0 commit comments