1
0
Fork 0

one last lint fix

This commit is contained in:
Enoch Riese 2022-11-14 17:19:01 -06:00
parent 3676c7af07
commit a22a472ccd

View file

@ -33,7 +33,7 @@ const Draft = (props) => {
// Pattern topLeft and bottomRight
let topLeft = { x: 0, y: 0 }
let bottomRight = { x: 0, y: 0 }
for (const [pname, part] of Object.entries(patternProps.stacks)) {
for (const pname in patternProps.stacks) {
if (pname == props.layoutPart && !fitLayoutPart) continue
let partLayout = newLayout.stacks[pname]