Skip to content

Commit

Permalink
Merge pull request #53 from qonversion/buildFix
Browse files Browse the repository at this point in the history
Fixed build issues on release step
  • Loading branch information
suriksarkisyan authored Jan 16, 2024
2 parents f6b1334 + 9b362d4 commit 316309e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion plugin/src/plugin/Mapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,8 @@ class Mapper {
return mappedPermissions;
}

for (const [key, entitlement] of Object.entries(entitlements)) {
for (const key of Object.keys(entitlements)) {
const entitlement = entitlements[key];
let renewState: EntitlementRenewState;
switch (entitlement.renewState) {
case EntitlementRenewState.NON_RENEWABLE:
Expand Down

0 comments on commit 316309e

Please sign in to comment.