diff options
author | Hailey <me@haileyok.com> | 2024-02-06 09:00:16 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-06 09:00:16 -0800 |
commit | 065a09408767a870c48c99549cc0198955ea1ccf (patch) | |
tree | 65474dcd1dade94870b7318dbc27004ea0b53835 /src/view/shell | |
parent | 2f1ce117d7db8db168303f6064e69024e920585e (diff) | |
download | voidsky-065a09408767a870c48c99549cc0198955ea1ccf.tar.zst |
fix web aux click on all browsers (#2633)
Diffstat (limited to 'src/view/shell')
-rw-r--r-- | src/view/shell/index.web.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/view/shell/index.web.tsx b/src/view/shell/index.web.tsx index 76f4f5c9b..97c065502 100644 --- a/src/view/shell/index.web.tsx +++ b/src/view/shell/index.web.tsx @@ -11,7 +11,6 @@ import {DrawerContent} from './Drawer' import {useWebMediaQueries} from '../../lib/hooks/useWebMediaQueries' import {useNavigation} from '@react-navigation/native' import {NavigationProp} from 'lib/routes/types' -import {useAuxClick} from 'lib/hooks/useAuxClick' import {t} from '@lingui/macro' import {useIsDrawerOpen, useSetDrawerOpen} from '#/state/shell' import {useCloseAllActiveElements} from '#/state/util' @@ -26,7 +25,6 @@ function ShellInner() { const closeAllActiveElements = useCloseAllActiveElements() useWebBodyScrollLock(isDrawerOpen) - useAuxClick() useEffect(() => { const unsubscribe = navigator.addListener('state', () => { |