Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jon-stewart committed Feb 20, 2024
1 parent 51f54ac commit 8161d9e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion cli/cmd/component.go
Original file line number Diff line number Diff line change
Expand Up @@ -1228,7 +1228,12 @@ func LoadCatalog(componentName string, getAllVersions bool) (*lwcomponent.Catalo
}

component.ApiInfo.AllVersions = vers
catalog.Components[componentName] = lwcomponent.NewCDKComponent(component.Name, component.Description, component.Type, component.ApiInfo, component.HostInfo)
catalog.Components[componentName] = lwcomponent.NewCDKComponent(
component.Name,
component.Description,
component.Type,
component.ApiInfo,
component.HostInfo)
}

componentsApiInfo = make(map[string]*lwcomponent.ApiInfo, len(catalog.Components))
Expand Down

0 comments on commit 8161d9e

Please sign in to comment.