From 3213b3ef334ecb60bdaae4acbd04bd3492f71a9d Mon Sep 17 00:00:00 2001 From: Paul Semionov Date: Thu, 9 Jun 2022 23:03:03 +0300 Subject: [PATCH] Fixed wrong localization key for Github Repo in AboutView --- Xcodes/Frontend/About/AboutView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Xcodes/Frontend/About/AboutView.swift b/Xcodes/Frontend/About/AboutView.swift index 2858b5f..4967e2e 100644 --- a/Xcodes/Frontend/About/AboutView.swift +++ b/Xcodes/Frontend/About/AboutView.swift @@ -18,7 +18,7 @@ struct AboutView: View { Button(action: { openURL(URL(string: "https://github.com/RobotsAndPencils/XcodesApp/")!) }) { - Label("GitHubRepo", systemImage: "link") + Label("GithubRepo", systemImage: "link") } .buttonStyle(LinkButtonStyle())