Sizing fix

This commit is contained in:
lumaa-dev 2024-11-11 13:07:02 +01:00
parent f26537a8ad
commit 0f59f6023b
1 changed files with 1 additions and 1 deletions

View File

@ -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 {