Browse Source

fix: UI disappears when pressing the eyedropper shortcut on mobile (#6725)

pull/6627/merge
zsviczian 3 years ago committed by GitHub
parent
commit
3ddcc48e4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/components/LayerUI.tsx

2
src/components/LayerUI.tsx

@ -399,7 +399,7 @@ const LayerUI = ({ @@ -399,7 +399,7 @@ const LayerUI = ({
}
/>
)}
{device.isMobile && !eyeDropperState && (
{device.isMobile && (
<MobileMenu
appState={appState}
elements={elements}

Loading…
Cancel
Save