Skip to content

Commit

Permalink
Merge pull request #593 from himself65/remove-unused-check
Browse files Browse the repository at this point in the history
fix: remove unused if-statement check
  • Loading branch information
dmonad committed Nov 2, 2023
2 parents 9a7b659 + f52569b commit c14a8d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils/encoding.js
Expand Up @@ -251,7 +251,7 @@ const integrateStructs = (transaction, store, clientsStructRefs) => {
return nextStructsTarget
}
let curStructsTarget = getNextStructTarget()
if (curStructsTarget === null && stack.length === 0) {
if (curStructsTarget === null) {
return null
}

Expand Down

0 comments on commit c14a8d7

Please sign in to comment.