Skip to content

Commit

Permalink
fix: remove unused if-statement check
Browse files Browse the repository at this point in the history
  • Loading branch information
himself65 committed Oct 31, 2023
1 parent 9a7b659 commit f52569b
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 f52569b

Please sign in to comment.