Skip to content

Commit

Permalink
Merge pull request #1030 from planetary-social/bugfix/profile-tint-color
Browse files Browse the repository at this point in the history
Fix tint color on Profile screen
  • Loading branch information
joshuatbrown authored Apr 11, 2024
2 parents 4234138 + 4f40e5b commit a9112ba
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

- Fixed the tint color on the Profile screen.
- Added option to connect your existing NIP-05 username.
- Fixed a crash that often occurred after opening the app.
- In an effort to prioritize critical functionality, we are dropping support for light mode in the near term. If you have concerns about the remaining theme please reach out to us at support@nos.social
Expand Down
2 changes: 1 addition & 1 deletion Nos/Views/AppView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ struct AppView: View {
CreateUsernameWizard(isPresented: $showNIP05Wizard)
}
.task(presentNIP05SheetIfNeeded)
.accentColor(.primaryTxt)
.tint(.primaryTxt)
}

@Sendable private func presentNIP05SheetIfNeeded() async {
Expand Down
1 change: 0 additions & 1 deletion Nos/Views/Profile/ProfileView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,6 @@ struct ProfileView: View {
)
.reportMenu($showingReportMenu, reportedObject: .author(author))
.alert(unwrapping: $alert)
.tint(.accent)
.onAppear {
Task {
await downloadAuthorData()
Expand Down

0 comments on commit a9112ba

Please sign in to comment.