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.
2 parents 3e613c6 + 570f132 commit e8d618aCopy full SHA for e8d618a
1 file changed
src/view/table/td.tsx
@@ -7,7 +7,6 @@ import Row from '../../row';
7
import { JSXInternal } from 'preact/src/jsx';
8
import { PluginRenderer } from '../../plugin';
9
import { useConfig } from '../../hooks/useConfig';
10
-import log from '../../util/log';
11
12
export function TD(
13
props: {
@@ -38,12 +37,6 @@ export function TD(
38
37
);
39
}
40
41
- if (typeof props.cell.data === 'object') {
42
- log.warn(
43
- `The data field for cell ${props.cell.id} is not a primitive value. Did you mean to add a "formatter" function to this column?`,
44
- );
45
- }
46
-
47
return props.cell.data;
48
};
49
0 commit comments