From 4b68a35a91c77dc03fbf193ddce977a898abda2f Mon Sep 17 00:00:00 2001 From: Tony Li Date: Wed, 29 Jul 2026 18:21:27 +1200 Subject: [PATCH] Prevent Beta badge from clipping on iPad --- .../Classes/ViewRelated/CustomPostTypes/CustomPostTabView.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/WordPress/Classes/ViewRelated/CustomPostTypes/CustomPostTabView.swift b/WordPress/Classes/ViewRelated/CustomPostTypes/CustomPostTabView.swift index 0ddd66a2afc4..1c21c9ab2c3c 100644 --- a/WordPress/Classes/ViewRelated/CustomPostTypes/CustomPostTabView.swift +++ b/WordPress/Classes/ViewRelated/CustomPostTypes/CustomPostTabView.swift @@ -152,6 +152,7 @@ struct CustomPostTabView: View { .padding(.vertical, 2) .background(AppColor.primary) .clipShape(Capsule()) + .fixedSize(horizontal: true, vertical: false) } .accessibilityElement(children: .combine) }