diff options
Diffstat (limited to 'src/components/dms/ActionsWrapper.tsx')
-rw-r--r-- | src/components/dms/ActionsWrapper.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/dms/ActionsWrapper.tsx b/src/components/dms/ActionsWrapper.tsx index 107e5eb8e..19a3e0424 100644 --- a/src/components/dms/ActionsWrapper.tsx +++ b/src/components/dms/ActionsWrapper.tsx @@ -1,5 +1,5 @@ import React, {useCallback} from 'react' -import {Pressable, View} from 'react-native' +import {Keyboard, Pressable, View} from 'react-native' import Animated, { cancelAnimation, runOnJS, @@ -38,6 +38,7 @@ export function ActionsWrapper({ // Reanimated's `runOnJS` doesn't like refs, so we can't use `runOnJS(menuControl.open)()`. Instead, we'll use this // function const open = useCallback(() => { + Keyboard.dismiss() menuControl.open() }, [menuControl]) |