Skip to content

Commit

Permalink
Update App.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Nov 6, 2023
1 parent ffac7a5 commit df4b77e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/App.tsx
Expand Up @@ -264,7 +264,7 @@ export default class App extends PureComponent<Props, State> {
focusPrevious = (): void => {
this.setState(previousState => {
const lastFocusableId = previousState.focusables.findLast(
(focusable) => focusable.isActive
focusable => focusable.isActive
)?.id;
const previousFocusableId = this.findPreviousFocusable(previousState);

Expand Down

0 comments on commit df4b77e

Please sign in to comment.