Skip to content

Commit

Permalink
fix: correct fix for override mistake (#409)
Browse files Browse the repository at this point in the history
  • Loading branch information
erights authored Aug 10, 2020
1 parent 89b7ff7 commit b576211
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/ses/src/enable-property-overrides.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ export default function enablePropertyOverrides(intrinsics) {
defineProperty(this, prop, {
value: newValue,
writable: true,
enumerable: desc.enumerable,
configurable: desc.configurable,
enumerable: true,
configurable: true,
});
}
}
Expand Down

0 comments on commit b576211

Please sign in to comment.