Skip to content

Commit

Permalink
docs(controllers): remove needless non-null assertion operator
Browse files Browse the repository at this point in the history
  • Loading branch information
maxpatiiuk authored Feb 17, 2024
1 parent 34c8700 commit 25d0cb1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export class NamesController {
host: ReactiveControllerHost;
value?: string[];
readonly kinds = Names.kinds;
private task!: Task<[Names.Kind], Names.Result>;
private task: Task<[Names.Kind], Names.Result>;
private _kind: Names.Kind = '';

constructor(host: ReactiveControllerHost) {
Expand Down

0 comments on commit 25d0cb1

Please sign in to comment.