From 28e67f4a7c96d98e349b4dead1dcc7772d79c6c9 Mon Sep 17 00:00:00 2001 From: ericholguin Date: Tue, 25 Apr 2023 21:03:59 -0600 Subject: [PATCH] Fix zap type selection on smaller phones Closes: #1018 Changelog-Fixed: Zap type selection on smaller phones --- damus/Views/Zaps/ZapTypePicker.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/damus/Views/Zaps/ZapTypePicker.swift b/damus/Views/Zaps/ZapTypePicker.swift index 515a3877..7155d92a 100644 --- a/damus/Views/Zaps/ZapTypePicker.swift +++ b/damus/Views/Zaps/ZapTypePicker.swift @@ -87,7 +87,7 @@ struct ZapTypePicker: View { .font(.system(size: 16)) } } - .frame(minWidth: 400, maxWidth: .infinity, minHeight: 50, maxHeight: 70) + .frame(maxWidth: .infinity, minHeight: 50, maxHeight: 70) .foregroundColor(fontColor()) .background(zap_type == type ? fillColor() : DamusColors.adaptableGrey) .cornerRadius(15)