From 09bd84593c0aff834b9e10d5c2f1aac354857fa3 Mon Sep 17 00:00:00 2001 From: lance chant <13349722+lancechant@users.noreply.github.com> Date: Fri, 22 May 2026 11:43:30 +0200 Subject: [PATCH] Fix/tv interface android (#1579) Signed-off-by: Lance Chant <13349722+lancechant@users.noreply.github.com> --- constants/TVTypography.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/constants/TVTypography.ts b/constants/TVTypography.ts index 833f617e..2d1c165b 100644 --- a/constants/TVTypography.ts +++ b/constants/TVTypography.ts @@ -47,10 +47,10 @@ export const useScaledTVTypography = () => { scaleMultipliers[TVTypographyScale.Default]; return { - display: Math.round(TVTypography.display * scale), - title: Math.round(TVTypography.title * scale), - heading: Math.round(TVTypography.heading * scale), - body: Math.round(TVTypography.body * scale), - callout: Math.round(TVTypography.callout * scale), + display: Math.round(scaleSize(TVTypography.display) * scale), + title: Math.round(scaleSize(TVTypography.title) * scale), + heading: Math.round(scaleSize(TVTypography.heading) * scale), + body: Math.round(scaleSize(TVTypography.body) * scale), + callout: Math.round(scaleSize(TVTypography.callout) * scale), }; };