From e2dcb539377d1e91985ceca4b8046283abe3508a Mon Sep 17 00:00:00 2001 From: Eric Bailey Date: Tue, 3 Dec 2024 12:09:13 -0600 Subject: [PATCH] Limit to one line --- src/components/Layout/Header/index.tsx | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/components/Layout/Header/index.tsx b/src/components/Layout/Header/index.tsx index 32705f520d..9d8edbc036 100644 --- a/src/components/Layout/Header/index.tsx +++ b/src/components/Layout/Header/index.tsx @@ -116,12 +116,8 @@ export function TitleText({children}: {children: React.ReactNode}) { const {gtMobile} = useBreakpoints() return ( + style={[a.text_lg, a.font_heavy, a.leading_snug, gtMobile && [a.text_xl]]} + numberOfLines={1}> {children} )