Skip to content

Commit b3ff1f0

Browse files
committed
🔥 Remove Doldam Font
1 parent fac79a3 commit b3ff1f0

File tree

3 files changed

+2
-13
lines changed

3 files changed

+2
-13
lines changed
Binary file not shown.

Shared/Sources/DesignSystem/Sources/Fonts/FontRegistrar.swift

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,13 @@ import Foundation
1212

1313
/// `FontRegistrar` 열거형은 커스텀 폰트를 등록하는 데 사용됩니다.
1414
public enum FontRegistrar {
15-
/// 이 메서드는 `Pretendard`와 `DolDam` 폰트를 등록합니다.
15+
/// 이 메서드는 편행 폰트인 `Pretendard` 등록합니다.
1616
/// 각각의 폰트 이름을 순회하면서 `registerFont` 메서드를 호출하여 폰트를 등록합니다.
1717
public static func registerFonts() {
1818
// Pretendard 폰트 등록
1919
for fontName in Pretendard.allCases.map(\.rawValue) {
2020
registerFont(bundle: .module, fontName: fontName, fontExtension: "otf")
2121
}
22-
23-
// DolDam 폰트 등록
24-
for fontName in DolDam.allCases.map(\.rawValue) {
25-
registerFont(bundle: .module, fontName: fontName, fontExtension: "otf")
26-
}
2722
}
2823

2924
/// 주어진 폰트 이름과 확장자를 사용하여 폰트를 동적으로 등록합니다.

Shared/Sources/DesignSystem/Sources/Fonts/PretendardDolDamFonts.swift renamed to Shared/Sources/DesignSystem/Sources/Fonts/PretendardFont.swift

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//
2-
// PretendardDolDamFonts.swift
2+
// PretendardFont.swift
33
//
44
//
55
// Created by 홍승현 on 1/30/24.
@@ -25,9 +25,3 @@ enum Pretendard: String, CaseIterable {
2525

2626
case thin = "Pretendard-Thin"
2727
}
28-
29-
// MARK: - DolDam
30-
31-
enum DolDam: String, CaseIterable {
32-
case `default` = "EF_jejudoldam"
33-
}

0 commit comments

Comments
 (0)