Skip to content

Commit

Permalink
Apply feedback on tabPressed const
Browse files Browse the repository at this point in the history
  • Loading branch information
denscollo committed Nov 26, 2019
1 parent 175e511 commit 50b4d5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app/client/src/utils/eventHandlers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ class EventHandlers {
}

if (isMac()) {
const tabPressed: boolean = key === 'tab' || keyCode === 9;
const tabPressed: boolean = key === 'tab';
const lastDecendants = EventHandlers.getLastDecendants(document.querySelector('main'));
const firstElement = document.querySelector('nav').firstElementChild as HTMLElement;
const lastElement = lastDecendants[lastDecendants.length - 1] as HTMLElement;
Expand Down

0 comments on commit 50b4d5c

Please sign in to comment.