Skip to content

Commit 65528c0

Browse files
committed
fixed TS issue
1 parent 2c10055 commit 65528c0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

showcase/app/components/mock/app/main/form-complex.gts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
import Component from '@glimmer/component';
77
import style from 'ember-style-modifier/modifiers/style';
88

9+
import type Owner from '@ember/owner';
10+
911
// HDS components
1012
import {
1113
HdsButton,
@@ -122,7 +124,7 @@ export default class MockAppMainFormComplex extends Component<MockAppMainFormCom
122124
_showButtons;
123125
_showErrors;
124126

125-
constructor(owner: unknown, args: MockAppMainFormComplexSignature['Args']) {
127+
constructor(owner: Owner, args: MockAppMainFormComplexSignature['Args']) {
126128
super(owner, args);
127129
this._showIntro = this.args.showIntro ?? this.args.showAll ?? false;
128130
this._showCheckbox = this.args.showCheckbox ?? this.args.showAll ?? false;

0 commit comments

Comments
 (0)