chore: Fix lint errors.

This commit is contained in:
Aaron Dodson
2025-08-18 14:04:52 -07:00
parent 29dabb331c
commit 4eaa37a527
2 changed files with 3 additions and 3 deletions

View File

@@ -26,7 +26,7 @@ export class FlyoutNavigationPolicy<T> implements INavigationPolicy<T> {
/**
* Returns null to prevent navigating into flyout items.
*
* @param _current The flyout item to navigate from.
* @param current The flyout item to navigate from.
* @returns Null to prevent navigating into flyout items.
*/
getFirstChild(current: T): IFocusableNode | null {

View File

@@ -181,10 +181,10 @@ export class LineCursor extends Marker {
* Returns whether or not navigation should loop around when reaching the end/
* beginning of navigable items.
*
* @param direction The direction in which the user is navigating.
* @param _direction The direction in which the user is navigating.
* @returns True if navigation should be allowed to loop, otherwise false.
*/
shouldLoop(direction: NavigationDirection): boolean {
shouldLoop(_direction: NavigationDirection): boolean {
return true;
}