Update context menu presentation (#10426)

This commit is contained in:
DS Boyce
2026-05-07 13:24:55 -07:00
committed by GitHub
parent 10cb0dbf21
commit 9a2cabf64c
12 changed files with 115 additions and 153 deletions
+1 -6
View File
@@ -11,22 +11,17 @@ export function ActionsWrapper({
isFromSelf,
senderProfile,
children,
onTap,
}: {
message: ChatBskyConvoDefs.MessageView
hasReactions?: boolean
isFromSelf: boolean
senderProfile?: bsky.profile.AnyProfileView
children: React.ReactNode
onTap?: () => void
}) {
const {t: l} = useLingui()
return (
<MessageContextMenu
message={message}
senderProfile={senderProfile}
onTap={onTap}>
<MessageContextMenu message={message} senderProfile={senderProfile}>
{trigger =>
// will always be true, since this file is platform split
trigger.IS_NATIVE && (