From 89174c85b9bcb92d7aefa8db9ff2c98468e3e312 Mon Sep 17 00:00:00 2001 From: todayama_r <13657682+Corvus400@users.noreply.github.com> Date: Mon, 11 Sep 2023 22:54:59 +0900 Subject: [PATCH] :recycle: Figma font style is now set in the timetable person label. --- app-ios/Modules/Sources/Timetable/PersonLabel.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app-ios/Modules/Sources/Timetable/PersonLabel.swift b/app-ios/Modules/Sources/Timetable/PersonLabel.swift index ecbc8d0fa..6003e7299 100644 --- a/app-ios/Modules/Sources/Timetable/PersonLabel.swift +++ b/app-ios/Modules/Sources/Timetable/PersonLabel.swift @@ -22,8 +22,8 @@ struct PersonLabel: View { ) Text(speaker.name) + .textStyle(TypographyTokens.bodyMedium) .foregroundStyle(AssetColors.Surface.onSurface.swiftUIColor) - .font(Font.custom(FontAssets.Montserrat.medium, size: 14)) .lineLimit(2) } .frame(maxWidth: .infinity, alignment: .leading)