fix(android): enlarge attachment remove touch target (#106737)

Co-authored-by: IWhatsskill <284122573+IWhatsskill@users.noreply.github.com>
This commit is contained in:
WhatsSkiLL
2026-07-14 23:13:14 -07:00
committed by GitHub
co-authored by IWhatsskill
parent ed49673307
commit e6f3303cf2
@@ -1816,7 +1816,7 @@ private fun AttachmentChip(
maxLines = 1,
overflow = TextOverflow.Ellipsis,
)
Surface(onClick = onRemove, modifier = Modifier.size(22.dp), shape = CircleShape, color = ClawTheme.colors.canvas, contentColor = ClawTheme.colors.text) {
Surface(onClick = onRemove, modifier = Modifier.size(ClawTheme.spacing.touchTarget), shape = CircleShape, color = ClawTheme.colors.canvas, contentColor = ClawTheme.colors.text) {
Box(contentAlignment = Alignment.Center) {
Icon(imageVector = Icons.Default.Close, contentDescription = nativeString("Remove attachment"), modifier = Modifier.size(13.dp))
}