Fix for undefined ref on hot reload on web (#5407)
This commit is contained in:
parent
41d4b2c7ef
commit
6c8ef69654
1 changed files with 1 additions and 1 deletions
|
@ -48,7 +48,7 @@ export function useComposerKeyboardShortcut() {
|
||||||
function handler(event: KeyboardEvent) {
|
function handler(event: KeyboardEvent) {
|
||||||
if (shouldIgnore(event)) return
|
if (shouldIgnore(event)) return
|
||||||
if (
|
if (
|
||||||
openDialogs.current.size > 0 ||
|
openDialogs?.current.size > 0 ||
|
||||||
isModalActive ||
|
isModalActive ||
|
||||||
activeLightbox ||
|
activeLightbox ||
|
||||||
isDrawerOpen
|
isDrawerOpen
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue