Skip to content

Commit

Permalink
Fixing optional params in component factory template (#1040)
Browse files Browse the repository at this point in the history
  • Loading branch information
art-alexeyenko authored May 26, 2022
1 parent 585800c commit dbad78f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ export function componentModule(componentName: string) {
return component;
}
function baseComponentFactory(componentName: string, exportName?: string, isEditing: boolean) {
function baseComponentFactory(componentName: string, exportName?: string, isEditing?: boolean) {
const component = components.get(componentName);
// check that component should be dynamically imported
Expand Down

0 comments on commit dbad78f

Please sign in to comment.