Skip to content

Commit a5f524e

Browse files
RichDom2185Copilot
andauthored
Update src/commons/application/Application.tsx
Co-authored-by: Copilot <[email protected]>
1 parent f5b3012 commit a5f524e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/commons/application/Application.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,8 +201,8 @@ const Application: React.FC = () => {
201201
document.addEventListener('contextmenu', event => event.preventDefault());
202202
document.addEventListener('keydown', event => {
203203
if (
204-
event.key == 'F12' ||
205-
((event.key == 'I' || event.key == 'J' || event.key == 'C') &&
204+
event.key === 'F12' ||
205+
((event.key === 'I' || event.key === 'J' || event.key === 'C') &&
206206
event.ctrlKey &&
207207
event.shiftKey)
208208
) {

0 commit comments

Comments
 (0)