Skip to content

Commit

Permalink
🐛 Fixes reference to incorrect attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
ekwoka committed Oct 16, 2023
1 parent 8adfcec commit b83e311
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/morph/src/morph.js
Original file line number Diff line number Diff line change
Expand Up @@ -446,8 +446,8 @@ function getFirstNode(parent) {
function getNextSibling(parent, reference) {
if (reference._x_teleport) {
return reference._x_teleport
} else if (reference.teleportBack) {
return reference.teleportBack
} else if (reference._x_teleportBack) {
return reference._x_teleportBack
}

let next
Expand Down

0 comments on commit b83e311

Please sign in to comment.