Merge pull request #593 from himself65/remove-unused-check

fix: remove unused if-statement check
This commit is contained in:
Kevin Jahns
2023-11-02 20:23:06 +01:00
committed by GitHub

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
}