Skip to content

Commit

Permalink
Dashboard: Fix misaligned menu bar (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
anian03 authored Sep 13, 2024
1 parent 0fe3a03 commit ee0fcd1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Sources/Account/Views/AccountNavigationBarMenuView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ struct AccountNavigationBarMenuView: View {
}
}, label: {
HStack(alignment: .center, spacing: .s) {
Spacer()
if let pictureUrl = viewModel.profilePicUrl {
ArtemisAsyncImage(imageURL: pictureUrl) {
Image(systemName: "person.fill")
Expand All @@ -66,7 +65,7 @@ struct AccountNavigationBarMenuView: View {
.resizable()
.scaledToFit()
.frame(width: 16, height: 10)
}.frame(width: 150)
}
})
.onChange(of: viewModel.error) { _, error in
self.error = error
Expand Down

0 comments on commit ee0fcd1

Please sign in to comment.