Skip to content

Commit

Permalink
another fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Lior539 committed Aug 6, 2024
1 parent 1dff698 commit 2cec0cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ComparisonTable/row.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const ComparisonRow = ({ feature, description, column1, column2 }) => {
{description && <p className="!mb-0 !text-sm text-opacity-75 leading-none">{description}</p>}
</td>
<td className="text-center">{typeof column1 === 'string' ? column1 : column1 ? <True /> : <False />}</td>
{column2 && (
{column2 !== undefined && (
<td className="text-center">
{typeof column2 === 'string' ? column2 : column2 ? <True /> : <False />}
</td>
Expand Down

0 comments on commit 2cec0cc

Please sign in to comment.