From f454b5cef6f287e1c6acb26a9a56a241373a2a3a Mon Sep 17 00:00:00 2001 From: Raghunandan Balachandran Date: Mon, 3 Nov 2025 12:23:04 +0100 Subject: [PATCH] fix: do not spread truncate property on the text component Signed-off-by: Raghunandan Balachandran --- packages/ui/src/components/Text/Text.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/ui/src/components/Text/Text.tsx b/packages/ui/src/components/Text/Text.tsx index a3dce47547..5b09d10663 100644 --- a/packages/ui/src/components/Text/Text.tsx +++ b/packages/ui/src/components/Text/Text.tsx @@ -34,7 +34,7 @@ function TextComponent( ...props, }); - const { className, ...restProps } = cleanedProps; + const { className, truncate, ...restProps } = cleanedProps; return (