Skip to content

Commit

Permalink
Fix tsc post merge of #5068
Browse files Browse the repository at this point in the history
  • Loading branch information
franknoirot committed Jan 17, 2025
1 parent 2e5ad09 commit ac81f3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/operations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@ const prepareToEditExtrude: PrepareToEditCallback =
const solid2DArtifact = getArtifactOfTypes(
{
key: pathArtifact.solid2dId,
types: ['solid2D'],
types: ['solid2d'],
},
engineCommandManager.artifactGraph
)
if (err(solid2DArtifact) || solid2DArtifact.type !== 'solid2D') {
if (err(solid2DArtifact) || solid2DArtifact.type !== 'solid2d') {
return baseCommand
}

Expand Down

0 comments on commit ac81f3d

Please sign in to comment.