diff --git a/nahbar/nahbar/PersonDetailView.swift b/nahbar/nahbar/PersonDetailView.swift index 0398d6a..a80d230 100644 --- a/nahbar/nahbar/PersonDetailView.swift +++ b/nahbar/nahbar/PersonDetailView.swift @@ -51,16 +51,9 @@ struct PersonDetailView: View { .themedNavBar() .toolbar { ToolbarItem(placement: .topBarTrailing) { - HStack(spacing: 16) { - NavigationLink(destination: LogbuchView(person: person)) { - Image(systemName: "sparkles") - .font(.system(size: 15)) - .foregroundStyle(theme.accent) - } - Button("Bearbeiten") { showingEditPerson = true } - .font(.system(size: 15)) - .foregroundStyle(theme.accent) - } + Button("Bearbeiten") { showingEditPerson = true } + .font(.system(size: 15)) + .foregroundStyle(theme.accent) } } .sheet(isPresented: $showingAddTodo) {