Skip to content

Commit

Permalink
Fix argument type in id setter
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixHenninger committed Sep 20, 2024
1 parent 231b38a commit eb39da7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/library/src/base/component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export class Component {
return this.#id
}

set id(v: string) {
set id(v: string | undefined) {
this.#id = v

// Pass through ID to emitter
Expand Down

0 comments on commit eb39da7

Please sign in to comment.