Skip to content

Commit

Permalink
Lint part 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Hal-9k1 committed Oct 24, 2024
1 parent cf00318 commit 8d69c0b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/renderer/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,9 @@ export default function App() {
setConsoleIsAlerted(false);
}}
onToggleKeyboardControls={() => {
setKeyboardControlsEnabled((v) => (v === 'on' ? 'offEdge' : 'on'));
setKeyboardControlsEnabled((v) =>
v === 'on' ? 'offEdge' : 'on',
);
}}
/>
<ResizeBar
Expand Down

0 comments on commit 8d69c0b

Please sign in to comment.