Skip to content

Commit

Permalink
Turn of wheel for deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
garthvh committed Oct 16, 2024
1 parent f0838ea commit 2eb6ae0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Meshtastic/Views/Nodes/TraceRouteLog.swift
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ struct TraceRouteLog: View {
.symbolRenderingMode(.hierarchical)
}
}
if selectedRoute?.hops?.count ?? 0 >= 3 {
if false {//selectedRoute?.hops?.count ?? 0 >= 3 {
HStack(alignment: .center) {
GeometryReader { geometry in
let size = ((geometry.size.width >= geometry.size.height ? geometry.size.height : geometry.size.width) / 2) - (idiom == .phone ? 45 : 85)
Expand Down

1 comment on commit 2eb6ae0

@bjpetit
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've posted a PR with a, slightly lame, proposal for your consideration. #970

Please sign in to comment.