From c9cd21c1043cb60539939e147f8a7e6e8d48ab46 Mon Sep 17 00:00:00 2001 From: Balazs Perlaki-Horvath Date: Sun, 18 Feb 2024 12:23:14 +0100 Subject: [PATCH] Fix double localization --- App/App_macOS.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/App/App_macOS.swift b/App/App_macOS.swift index 5eea9c09..35cc2478 100644 --- a/App/App_macOS.swift +++ b/App/App_macOS.swift @@ -97,7 +97,7 @@ struct RootView: View { if FeatureFlags.hasLibrary { Section("app_macos_navigation.button.library".localized) { ForEach(libraryItems, id: \.self) { navigationItem in - Label(navigationItem.name.localized, systemImage: navigationItem.icon) + Label(navigationItem.name, systemImage: navigationItem.icon) } } }