diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-03-28 08:43:40 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-28 08:43:40 +0200 |
commit | 55a40c2436b68dea850e54a65c5dd197132c08e4 (patch) | |
tree | e6d4d2d45ce5a3475aa4f73556910ff7d818986f /src/components/dms/ActionsWrapper.tsx | |
parent | ac2c2a9a1d2d09442a497dc0dcfd8bc0bf715372 (diff) | |
download | voidsky-55a40c2436b68dea850e54a65c5dd197132c08e4.tar.zst |
[DMs] Emoji reaction picker (#8023)
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> |