diff --git a/packages/ui-calendar/src/Calendar/index.tsx b/packages/ui-calendar/src/Calendar/index.tsx index fcc36d3624..90926e0c43 100644 --- a/packages/ui-calendar/src/Calendar/index.tsx +++ b/packages/ui-calendar/src/Calendar/index.tsx @@ -110,8 +110,8 @@ class Calendar extends Component { } setFirstDayTabIndex = (tabIndex: 0 | -1) => { - // Manage the first day as the focus entry point and prevent focus stacking - // by adjusting its tabIndex when focus moves to other days + // Manage the first day as the focus entry point and prevent focus + // from getting stuck by adjusting its tabIndex when focus moves to other days if (this.dayRefs[0]) { this.dayRefs[0].tabIndex = tabIndex }