From 5c280b792210f82c31c9435054e84ebbb813efc3 Mon Sep 17 00:00:00 2001 From: rajani kumari Gupta Date: Mon, 21 Oct 2024 14:28:34 +0530 Subject: [PATCH] Fix comment --- MVMCoreUI/Atomic/Atoms/Views/CircularProgressBar.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MVMCoreUI/Atomic/Atoms/Views/CircularProgressBar.swift b/MVMCoreUI/Atomic/Atoms/Views/CircularProgressBar.swift index af5e49f9..8bef96fe 100644 --- a/MVMCoreUI/Atomic/Atoms/Views/CircularProgressBar.swift +++ b/MVMCoreUI/Atomic/Atoms/Views/CircularProgressBar.swift @@ -107,9 +107,9 @@ import UIKit // configure attributed string for progress percentage. let attributedString = NSMutableAttributedString(string: String(percent) + "%") // percent value - attributedString.setAttributes([NSAttributedString.Key.font: MFStyler.fontForFeedCardTitle()], range: NSMakeRange(0, percentLen)) + attributedString.setAttributes([NSAttributedString.Key.font: Styler.Font.BoldTitleXLarge], range: NSMakeRange(0, percentLen)) // % symbol - attributedString.setAttributes([NSAttributedString.Key.font: MFStyler.fontRegularMicro()], range: NSMakeRange(percentLen, 1)) + attributedString.setAttributes([NSAttributedString.Key.font: Styler.Font.RegularMicro], range: NSMakeRange(percentLen, 1)) // show progress percentage in a text layer let width = viewWidth