Fix/tv interface android (#1579)

Signed-off-by: Lance Chant <13349722+lancechant@users.noreply.github.com>
This commit is contained in:
lance chant
2026-05-22 11:43:30 +02:00
committed by GitHub
parent f8a84e34fd
commit 09bd84593c

View File

@@ -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),
};
};