Skip to content

Commit

Permalink
fix : export issue
Browse files Browse the repository at this point in the history
  • Loading branch information
akram-r committed Jan 29, 2024
1 parent 9764e65 commit a85333c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ function App() {
const artboardLeftAdjustment = artboardPosition.left;
const artboardTopAdjustment = artboardPosition.top;

if (!artboardLeftAdjustment || !artboardTopAdjustment) {
if (artboardLeftAdjustment === undefined || artboardTopAdjustment === undefined) {
return;
}
const artboardDimensions = getArtboardDimensions(canvasRef.current, activeArtboardId);
Expand Down

0 comments on commit a85333c

Please sign in to comment.