Limit to one line

This commit is contained in:
Eric Bailey
2024-12-03 12:09:13 -06:00
parent 8167885aa8
commit e2dcb53937
+2 -6
View File
@@ -116,12 +116,8 @@ export function TitleText({children}: {children: React.ReactNode}) {
const {gtMobile} = useBreakpoints() const {gtMobile} = useBreakpoints()
return ( return (
<Text <Text
style={[ style={[a.text_lg, a.font_heavy, a.leading_snug, gtMobile && [a.text_xl]]}
a.text_lg, numberOfLines={1}>
a.font_heavy,
a.leading_snug,
gtMobile && [a.text_xl],
]}>
{children} {children}
</Text> </Text>
) )