diff --git a/src/App.tsx b/src/App.tsx index e8467b9..ab7b8f3 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -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);