fix: remove unused if-statement check

This commit is contained in:
Alex Yang 2023-10-30 19:41:09 -05:00
parent 9a7b659919
commit f52569b8fa

View File

@ -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
}