Skip to content

Commit 1a64969

Browse files
committed
fix: configuration.
1 parent 1235649 commit 1a64969

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

designer/src/workspace/launch-pad-step/launch-pad-step-extension-configuration.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@ import { LaunchPadStepComponentViewConfiguration } from './launch-pad-step-compo
22

33
export interface LaunchPadStepExtensionConfiguration {
44
view?: LaunchPadStepComponentViewConfiguration;
5-
componentType?: string;
65
}

designer/src/workspace/launch-pad-step/launch-pad-step-extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export class LaunchPadStepExtension implements StepExtension<SequentialStep> {
2222
return new LaunchPadStepExtension(configuration);
2323
}
2424

25-
public readonly componentType = this.configuration?.componentType || 'launchPad';
25+
public readonly componentType = 'launchPad';
2626

2727
private constructor(private readonly configuration: LaunchPadStepExtensionConfiguration | undefined) {}
2828

0 commit comments

Comments
 (0)