mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-17 15:28:04 +08:00
Fix type error in Brave browser (#569)
This commit is contained in:
committed by
Keavon Chambers
parent
bac34e3e64
commit
7daebef880
@@ -14,7 +14,7 @@ export function createFullscreenState() {
|
||||
|
||||
// Experimental Keyboard API: https://developer.mozilla.org/en-US/docs/Web/API/Navigator/keyboard
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
||||
const keyboardLockApiSupported: Readonly<boolean> = "keyboard" in navigator && "lock" in (navigator as any).keyboard;
|
||||
const keyboardLockApiSupported: Readonly<boolean> = "keyboard" in navigator && (navigator as any).keyboard && "lock" in (navigator as any).keyboard;
|
||||
|
||||
const enterFullscreen = async (): Promise<void> => {
|
||||
await document.documentElement.requestFullscreen();
|
||||
|
||||
Reference in New Issue
Block a user