Skip to content
This repository has been archived by the owner on Nov 27, 2023. It is now read-only.

Commit

Permalink
fix: (Visualization): fix remove condition is redundant with previous…
Browse files Browse the repository at this point in the history
…ly checked one
  • Loading branch information
Javier Lopez de Ancos committed Dec 10, 2022
1 parent 68f8831 commit 6316f32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Visualization.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const Visualization = ({ toggleCatalog }: IVisualization) => {
let reactFlowWrapperRect;

if (reactFlowWrapper) {
reactFlowWrapperRect = reactFlowWrapper?.getBoundingClientRect();
reactFlowWrapperRect = reactFlowWrapper.getBoundingClientRect();
}

if (
Expand Down

0 comments on commit 6316f32

Please sign in to comment.