From 822190f0b015c3a3384c7c13e9c00ad88a4cbd92 Mon Sep 17 00:00:00 2001 From: Matt Bruce Date: Tue, 11 Oct 2022 09:20:41 -0500 Subject: [PATCH] bodysmall/boldbodysmall uses eTX Signed-off-by: Matt Bruce --- VDS/Typography/Typography.swift | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/VDS/Typography/Typography.swift b/VDS/Typography/Typography.swift index 04d91df5..830c6d72 100644 --- a/VDS/Typography/Typography.swift +++ b/VDS/Typography/Typography.swift @@ -223,8 +223,7 @@ extension TypographicalStyle { .BoldTitleMedium, .BoldTitleSmall, .BoldBodyLarge, - .BoldBodyMedium, - .BoldBodySmall: + .BoldBodyMedium: return .dsBold case .FeatureXLarge, @@ -240,14 +239,15 @@ extension TypographicalStyle { case .TitleMedium, .TitleSmall, .BodyLarge, - .BodyMedium, - .BodySmall: + .BodyMedium: return .dsRegular - case .BoldMicro: + case .BoldBodySmall, + .BoldMicro: return .txBold - case .Micro: + case .BodySmall, + .Micro: return .txRegular } }