Skip to content

Commit

Permalink
Merge pull request viveknigam3003#63 from akram-r/main
Browse files Browse the repository at this point in the history
fix : export issue
  • Loading branch information
akram-r authored Jan 29, 2024
2 parents 9764e65 + a85333c commit 1d7f763
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 1d7f763

Please sign in to comment.