From 0f59f6023b98996a590f971272bac9e81a007d3f Mon Sep 17 00:00:00 2001 From: lumaa-dev Date: Mon, 11 Nov 2024 13:07:02 +0100 Subject: [PATCH] Sizing fix --- Bubble/Components/ProfilePicture.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bubble/Components/ProfilePicture.swift b/Bubble/Components/ProfilePicture.swift index 54bdc59..1863f37 100644 --- a/Bubble/Components/ProfilePicture.swift +++ b/Bubble/Components/ProfilePicture.swift @@ -9,7 +9,7 @@ struct ProfilePicture: View { init(url: URL, size: CGFloat = 50.0) { self.url = url - self.size = size + self.size = max(10, size) } var cornerRadius: CGFloat {