Skip to content

Commit

Permalink
Resolved an issue preventing app archival
Browse files Browse the repository at this point in the history
  • Loading branch information
orchetect committed Oct 2, 2023
1 parent 9412ef5 commit f8a221e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sources/TimecodeKit/Utilities/Outsourced/Integers.swift
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ extension BinaryInteger {
/// - for the integer 10, this would return 2
/// - for the integer 250, this would return 3
@_disfavoredOverload
var numberOfDigits: Int {
public var numberOfDigits: Int {
if self < 10 && self >= 0 || self > -10 && self < 0 {
return 1
} else {
Expand Down
2 changes: 1 addition & 1 deletion Sources/TimecodeKitUI/SwiftUI/SwiftUI Text.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#if canImport(SwiftUI)

import SwiftUI
@testable import TimecodeKit
import TimecodeKit

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

0 comments on commit f8a221e

Please sign in to comment.