From ee2b808cba4374a9a07d531232025591da997dd9 Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Thu, 9 Apr 2026 13:37:38 -0500 Subject: [PATCH] Couple of fixes --- src/components/Composer/index.tsx | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) 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 ? ( {