Skip to content

Commit

Permalink
[Apps] Fix outdated alert text
Browse files Browse the repository at this point in the history
  • Loading branch information
tonyfreeman committed Feb 2, 2024
1 parent 32b306f commit 085f863
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ struct AppsOutdatedAppAlert: View {
.padding(.top, 24)

VStack(spacing: 4) {
Text("App is Rebuilding")
Text("Outdated App")
.font(.system(size: 14, weight: .bold))

Text(
"A new app version is rebuilding on the server. " +
"Please wait, it can take some time."
"Contact the developer on GitHub to request " +
"further app support"
)
.font(.system(size: 14, weight: .medium))
.multilineTextAlignment(.center)
Expand All @@ -43,7 +43,7 @@ struct AppsOutdatedAppAlert: View {
HStack(spacing: 8) {
Image("GitHubButton")

Text("Got It")
Text("Go To GitHub")
.underline()
.font(.system(size: 14, weight: .bold))
.foregroundColor(.white)
Expand Down

0 comments on commit 085f863

Please sign in to comment.