From d0503ac3c896b62627b6791eec6c1e8554e870f7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A1udio=20Alves?= Date: Mon, 28 Oct 2024 16:31:12 +0000 Subject: [PATCH] fix(input): helper wrapper max width --- packages/yoga/src/Input/native/Helper.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/yoga/src/Input/native/Helper.jsx b/packages/yoga/src/Input/native/Helper.jsx index 39f4d73177..d94a4ace65 100644 --- a/packages/yoga/src/Input/native/Helper.jsx +++ b/packages/yoga/src/Input/native/Helper.jsx @@ -14,7 +14,7 @@ const HelperWrapper = styled.View( }, }) => ` width: ${full ? '100%' : `${input.width}px`}; - max-width: ${input.width}px; + max-width: ${full ? '100%' : `${input.width}px`}; flex-direction: row; justify-content: space-between;