diff --git a/packages/app/src/components/ui/dropdown-menu.tsx b/packages/app/src/components/ui/dropdown-menu.tsx index 69507bf80..8daac9efc 100644 --- a/packages/app/src/components/ui/dropdown-menu.tsx +++ b/packages/app/src/components/ui/dropdown-menu.tsx @@ -218,12 +218,16 @@ function renderDropdownSurface(input: { style={surfaceStyle} frameStyle={frameStyle} entering={contentEntering} - exiting={contentExiting.withCallback((finished) => { - "worklet"; - if (finished) { - runOnJS(onExited)(); - } - })} + exiting={ + isWeb + ? undefined + : contentExiting.withCallback((finished) => { + "worklet"; + if (finished) { + runOnJS(onExited)(); + } + }) + } > {body}