From 95a48f8752a772ec8037630f5e4e05ff7d35131d Mon Sep 17 00:00:00 2001 From: Jackson Harper Date: Tue, 4 Apr 2023 22:23:47 +0800 Subject: [PATCH] Remove debug --- apple/OmnivoreKit/Sources/Views/FeedItem/LibraryItemCard.swift | 1 - apple/OmnivoreKit/Sources/Views/LocalText.swift | 1 - 2 files changed, 2 deletions(-) diff --git a/apple/OmnivoreKit/Sources/Views/FeedItem/LibraryItemCard.swift b/apple/OmnivoreKit/Sources/Views/FeedItem/LibraryItemCard.swift index fb4ba0fc8..cb6087871 100644 --- a/apple/OmnivoreKit/Sources/Views/FeedItem/LibraryItemCard.swift +++ b/apple/OmnivoreKit/Sources/Views/FeedItem/LibraryItemCard.swift @@ -78,7 +78,6 @@ public struct LibraryItemCard: View { if let highlights = item.highlights, highlights.count > 0 { let fmted = LocalText.pluralizedText(key: "number_of_highlights", count: highlights.count) if item.wordsCount > 0 { - print(" - highlightsText: ", " • \(fmted)") return " • \(fmted)" } return fmted diff --git a/apple/OmnivoreKit/Sources/Views/LocalText.swift b/apple/OmnivoreKit/Sources/Views/LocalText.swift index ff21ce662..13d80a0d8 100644 --- a/apple/OmnivoreKit/Sources/Views/LocalText.swift +++ b/apple/OmnivoreKit/Sources/Views/LocalText.swift @@ -7,7 +7,6 @@ public enum LocalText { public static func pluralizedText(key: String, count: Int) -> String { let format = NSLocalizedString(key, bundle: .module, comment: "") - print("key", key, "format", format) return String.localizedStringWithFormat(format, count) }