Skip to content

Commit

Permalink
remove unnecessary nullish coalescing
Browse files Browse the repository at this point in the history
  • Loading branch information
gbalint committed Oct 10, 2024
1 parent 0f92b36 commit 1509747
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/src/components/canvas/controls/grid-controls.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1157,7 +1157,7 @@ export const GridControls = controlForStrategyMemoized<GridControlsProps>(
<GridControl
key={`grid-control-${EP.toString(grid.elementPath)}`}
grid={grid}
visible={visible ?? 'visible'}
visible={visible}
/>
)
})}
Expand Down

0 comments on commit 1509747

Please sign in to comment.