Fixes build error

This commit is contained in:
psychedelicious 2022-10-28 15:44:04 +11:00
parent 75d8fc77c2
commit a7e2a7037a

View File

@ -30,7 +30,6 @@ export const inpaintingControlsSelector = createSelector(
lines, lines,
pastLines, pastLines,
futureLines, futureLines,
isMovingBoundingBox,
shouldShowBoundingBoxFill, shouldShowBoundingBoxFill,
} = inpainting; } = inpainting;
@ -46,7 +45,6 @@ export const inpaintingControlsSelector = createSelector(
canUndo: pastLines.length > 0, canUndo: pastLines.length > 0,
canRedo: futureLines.length > 0, canRedo: futureLines.length > 0,
isMaskEmpty: lines.length === 0, isMaskEmpty: lines.length === 0,
isMovingBoundingBox,
activeTabName: tabMap[activeTab], activeTabName: tabMap[activeTab],
showDualDisplay, showDualDisplay,
shouldShowBoundingBoxFill, shouldShowBoundingBoxFill,