ui: Fix avatar indicators getting cut off (#18821)

This PR fixes an issue introduced in #18810 that was causing the avatar
indicators to get cut off.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers
2024-10-07 12:53:11 -04:00
committed by GitHub
parent c83690ff14
commit 11206a8444
@@ -84,7 +84,6 @@ impl RenderOnce for Avatar {
div()
.size(container_size)
.rounded_full()
.overflow_hidden()
.when_some(self.border_color, |this, color| {
this.border(border_width).border_color(color)
})