diff --git a/Views/Buttons/BookmarkButton.swift b/Views/Buttons/BookmarkButton.swift index 72c96a05..3a568d9a 100644 --- a/Views/Buttons/BookmarkButton.swift +++ b/Views/Buttons/BookmarkButton.swift @@ -80,8 +80,11 @@ struct BookmarkButton: View { } } label: { Label { - Text(browser.articleBookmarked ? - "common.dialog.button.remove_bookmark".localized : "common.dialog.button.add_bookmark".localized) + Text( + browser.articleBookmarked ? + "common.dialog.button.remove_bookmark".localized : + "common.dialog.button.add_bookmark".localized + ) } icon: { Image(systemName: browser.articleBookmarked ? "star.fill" : "star") .renderingMode(browser.articleBookmarked ? .original : .template)