Skip to content

Commit

Permalink
fix type change
Browse files Browse the repository at this point in the history
  • Loading branch information
mrkoreye committed Jan 24, 2024
1 parent ef77a9d commit ab15e11
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/core/src/parsers/builder/builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -619,10 +619,7 @@ export const builderElementToMitosisNode = (
for (const key in block.component.options) {
const value = block.component.options[key];
const valueIsArrayOfBuilderElements = Array.isArray(value) && value.every(isBuilderElement);
console.log('mitosis bindings: ', {
valueIsArrayOfBuilderElements,
value,
});

if (typeof value === 'string') {
properties[key] = value;
} else if (valueIsArrayOfBuilderElements) {
Expand Down

0 comments on commit ab15e11

Please sign in to comment.