fix: incoming call auto-dismiss, deleted message text, PiP drag cleanup

This commit is contained in:
root
2026-05-15 16:00:17 -04:00
parent ab9b02a243
commit cb2d730cca
2 changed files with 8 additions and 5 deletions
@@ -8,11 +8,7 @@ export const MessageDeletedContent = as<'div', { children?: never; reason?: stri
({ reason, ...props }, ref) => (
<Box as="span" alignItems="Center" gap="100" style={warningStyle} {...props} ref={ref}>
<Icon size="50" src={Icons.Delete} />
{reason ? (
<i>{reason}</i>
) : (
<i>This message has been deleted</i>
)}
<i>{reason ? `This message has been deleted — ${reason}` : 'This message has been deleted'}</i>
</Box>
)
);