Skip to content

Commit

Permalink
remove eager false
Browse files Browse the repository at this point in the history
  • Loading branch information
amk221 committed Sep 6, 2024
1 parent 43df1e1 commit 1860cc2
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions addon/components/message.gjs
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ export default class MessageComponent extends Component {

@tracked isDismissed = false;

registerElement = modifier((element) => (this.element = element), {
eager: false
});
registerElement = modifier((element) => (this.element = element));

get dismissed() {
return this.isDismissible ? `${this.isDismissed}` : null;
Expand Down

0 comments on commit 1860cc2

Please sign in to comment.