Skip to content

Commit

Permalink
remove redundant condition
Browse files Browse the repository at this point in the history
  • Loading branch information
vashjs committed Feb 26, 2024
1 parent 670829c commit a8b97f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/QueryBuilder/ResultViewer/TableCell/DynamicTable.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
import css from './DynamicTable.css';

export const DynamicTable = ({ properties, values }) => {
const tableBodyRows = JSON.parse(values || null);
const tableBodyRows = JSON.parse(values);

return (
<table className={css.DynamicTable}>
Expand Down

0 comments on commit a8b97f1

Please sign in to comment.