Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
thatsjonsense authored and bdbch committed May 20, 2022
1 parent 23483d5 commit 13a0342
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/core/src/helpers/getAttributesFromExtensions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,14 +94,14 @@ export function getAttributesFromExtensions(extensions: Extensions): ExtensionAt
}

if (attribute.isRequired && attribute.default === undefined) {
delete mergedAttr.default;
delete mergedAttr.default
}

extensionAttributes.push({
type: extension.name,
name,
attribute: mergedAttr,
});
})
})
})

Expand Down

0 comments on commit 13a0342

Please sign in to comment.