Skip to content

Commit

Permalink
chore: Fixed lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ijlee2 committed Dec 13, 2024
1 parent ea9face commit e2fca50
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion docs/my-app/app/components/widgets/widget-2.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import type Owner from '@ember/owner';
import Component from '@glimmer/component';
import { tracked } from '@glimmer/tracking';

Expand All @@ -19,7 +20,7 @@ export default class WidgetsWidget2Component extends Component<WidgetsWidget2Sig
@tracked data = [] as Data[];
@tracked summaries = [] as Summary[];

constructor(owner: unknown, args: WidgetsWidget2Signature['Args']) {
constructor(owner: Owner, args: WidgetsWidget2Signature['Args']) {
super(owner, args);

this.loadData();
Expand Down
3 changes: 2 additions & 1 deletion docs/my-app/app/components/widgets/widget-3.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import type Owner from '@ember/owner';
import Component from '@glimmer/component';
import { tracked } from '@glimmer/tracking';

Expand All @@ -14,7 +15,7 @@ export default class WidgetsWidget3Component extends Component<WidgetsWidget3Sig

@tracked concertData = {} as Concert;

constructor(owner: unknown, args: WidgetsWidget3Signature['Args']) {
constructor(owner: Owner, args: WidgetsWidget3Signature['Args']) {
super(owner, args);

this.loadData();
Expand Down

0 comments on commit e2fca50

Please sign in to comment.