Skip to content

Commit

Permalink
fix: is same orientaiton (#3905)
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrokohler authored Jan 19, 2024
1 parent 9bb00d7 commit 31b837f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion platform/core/src/utils/isDisplaySetReconstructable.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ function processSingleframe(instances) {
}

function _isSameOrientation(iop1, iop2) {
if (iop1 === undefined || !iop2 === undefined) {
if (iop1 === undefined || iop2 === undefined) {
return;
}

Expand Down

0 comments on commit 31b837f

Please sign in to comment.