Skip to content

Commit

Permalink
Fix linting for TextCell.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
adammation committed Jan 11, 2024
1 parent 687b50a commit 550fe09
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions packages/vanilla-renderers/src/cells/TextCell.tsx
Expand Up @@ -50,11 +50,9 @@ export const TextCell = (props: CellProps & VanillaRendererProps) => {
const appliedUiSchemaOptions = merge({}, config, uischema.options);
return (
<input

type={
appliedUiSchemaOptions.format ? appliedUiSchemaOptions.format : 'text'
}

value={data || ''}
onChange={(ev) =>
handleChange(path, ev.target.value === '' ? undefined : ev.target.value)
Expand Down

0 comments on commit 550fe09

Please sign in to comment.