Skip to content

Commit

Permalink
build: resolve array depolorizer bug
Browse files Browse the repository at this point in the history
  • Loading branch information
sarvalabs-gokul committed Oct 28, 2024
1 parent eff611e commit c061e79
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions dist/depolorizer.js
Original file line number Diff line number Diff line change
Expand Up @@ -223,10 +223,7 @@ class Depolorizer {
while (!pack.isDone()) {
// Depolorize the element into the element type
const element = pack.depolorize(schema.fields.values);
if (element) {
// const ele = pack.unpack(schema.fields.values, element);
arr.push(element);
}
arr.push(element);
}
return arr;
}
Expand Down

0 comments on commit c061e79

Please sign in to comment.