From 57a9e3fa093eb744bfe5af727295a94ce2b21b4a Mon Sep 17 00:00:00 2001 From: Max Goedjen Date: Sun, 17 Aug 2025 15:04:18 -0500 Subject: [PATCH] Remove namespace --- Sources/Secretive/Views/ContentView.swift | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Sources/Secretive/Views/ContentView.swift b/Sources/Secretive/Views/ContentView.swift index 4ab2210..bd13227 100644 --- a/Sources/Secretive/Views/ContentView.swift +++ b/Sources/Secretive/Views/ContentView.swift @@ -67,12 +67,12 @@ extension ContentView { var updateNoticeContent: (LocalizedStringResource, Color)? { guard let update = updater.update else { return nil } if update.critical { - return (LocalizedStringResource.updateCriticalNoticeTitle, .red) + return (.updateCriticalNoticeTitle, .red) } else { if updater.testBuild { - return (LocalizedStringResource.updateTestNoticeTitle, .blue) + return (.updateTestNoticeTitle, .blue) } else { - return (LocalizedStringResource.updateNormalNoticeTitle, .orange) + return (.updateNormalNoticeTitle, .orange) } } }