diff --git a/src/components/Composer/index.tsx b/src/components/Composer/index.tsx index 7feae38491..058e0ea750 100644 --- a/src/components/Composer/index.tsx +++ b/src/components/Composer/index.tsx @@ -303,7 +303,13 @@ export function Composer({ {IS_WEB && ( + style={[a.absolute, a.inset_0, a.z_10, {overflow: 'hidden'}]} + ref={node => { + if (IS_WEB && node) { + // @ts-ignore web only a11y + node.setAttribute('inert', '') + } + }}> setActiveFacet(null)} @@ -379,10 +386,12 @@ export function Composer({ */ function AutocompleteInner({ + inverted, sift, activeFacet, onDismiss, }: { + inverted?: boolean sift: UseSiftReturn activeFacet: TapperActiveFacet onDismiss: () => void @@ -407,7 +416,7 @@ function AutocompleteInner({ return items && items.length ? ( {