Skip to content

Commit

Permalink
fix: correct lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
unazko committed Dec 17, 2024
1 parent 5e9f6e0 commit e8216f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/main/src/Calendar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ class Calendar extends CalendarPart {
this._specialCalendarDates;
invalidationInfo.target.detachInvalidate(this._onCalendarLegendInvalidateBound);
}
};
}

/**
* @private
Expand Down Expand Up @@ -485,7 +485,7 @@ class Calendar extends CalendarPart {
const calendarLegend = this.calendarLegend.length ? this.calendarLegend[0] : undefined;

if (calendarLegend) {
calendarLegend.attachInvalidate(this._onCalendarLegendInvalidateBound)
calendarLegend.attachInvalidate(this._onCalendarLegendInvalidateBound);
}

if (!this._valueIsProcessed) {
Expand Down

0 comments on commit e8216f1

Please sign in to comment.