Skip to content

Commit f8a221e

Browse files
committed
Resolved an issue preventing app archival
1 parent 9412ef5 commit f8a221e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Sources/TimecodeKit/Utilities/Outsourced/Integers.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ extension BinaryInteger {
2020
/// - for the integer 10, this would return 2
2121
/// - for the integer 250, this would return 3
2222
@_disfavoredOverload
23-
var numberOfDigits: Int {
23+
public var numberOfDigits: Int {
2424
if self < 10 && self >= 0 || self > -10 && self < 0 {
2525
return 1
2626
} else {

Sources/TimecodeKitUI/SwiftUI/SwiftUI Text.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#if canImport(SwiftUI)
88

99
import SwiftUI
10-
@testable import TimecodeKit
10+
import TimecodeKit
1111

1212
@available(macOS 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
1313
extension Timecode {

0 commit comments

Comments
 (0)