This commit is contained in:
Pierre Jacquier
2024-12-05 14:38:23 -05:00
parent e4b0de0ead
commit 28ae261e5f

View File

@ -585,8 +585,8 @@ export function canShellSelection(selection: Selections) {
)
return commonNodes.every(
(n) =>
n.selection.artifact?.type == 'cap' ||
n.selection.artifact?.type == 'wall'
n.selection.artifact?.type === 'cap' ||
n.selection.artifact?.type === 'wall'
)
}