Skip to content

Commit

Permalink
remove not needed utils
Browse files Browse the repository at this point in the history
  • Loading branch information
zkochan committed Dec 1, 2022
1 parent a409786 commit ef039e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scope/models/model-component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1080,7 +1080,7 @@ consider using --ignore-missing-artifacts flag if you're sure the artifacts are
return Component.from({
name: rawComponent.box ? `${rawComponent.box}/${rawComponent.name}` : rawComponent.name,
scope: rawComponent.scope,
versions: mapValues(rawComponent.versions).map((val: string) => Ref.from(val)),
versions: mapValues(rawComponent.versions as Record<string, string>, (val) => Ref.from(val)),
lang: rawComponent.lang,
deprecated: rawComponent.deprecated,
bindingPrefix: rawComponent.bindingPrefix,
Expand Down

0 comments on commit ef039e9

Please sign in to comment.