diff options
Diffstat (limited to 'src/components/dms/ActionsWrapper.tsx')
-rw-r--r-- | src/components/dms/ActionsWrapper.tsx | 24 |
1 files changed, 1 insertions, 23 deletions
diff --git a/src/components/dms/ActionsWrapper.tsx b/src/components/dms/ActionsWrapper.tsx index 385086d7c..120a5f8ad 100644 --- a/src/components/dms/ActionsWrapper.tsx +++ b/src/components/dms/ActionsWrapper.tsx @@ -23,28 +23,6 @@ export function ActionsWrapper({ // will always be true, since this file is platform split trigger.isNative && ( <View style={[a.flex_1, a.relative]}> - {/* {isNative && ( - <View - style={[ - a.rounded_full, - a.absolute, - {bottom: '100%'}, - isFromSelf ? a.right_0 : a.left_0, - t.atoms.bg, - a.flex_row, - a.shadow_lg, - a.py_xs, - a.px_md, - a.gap_md, - a.mb_xs, - ]}> - {['👍', '😆', '❤️', '👀', '😢'].map(emoji => ( - <Text key={emoji} style={[a.text_center, {fontSize: 32}]}> - {emoji} - </Text> - ))} - </View> - )} */} <View style={[ {maxWidth: '80%'}, @@ -56,7 +34,7 @@ export function ActionsWrapper({ accessibilityActions={[ {name: 'activate', label: _(msg`Open message options`)}, ]} - onAccessibilityAction={trigger.control.open}> + onAccessibilityAction={() => trigger.control.open('full')}> {children} </View> </View> |