diff --git a/iosApp/iosApp/ContentView.swift b/iosApp/iosApp/ContentView.swift index 195ba3611..a3e817e0d 100644 --- a/iosApp/iosApp/ContentView.swift +++ b/iosApp/iosApp/ContentView.swift @@ -180,7 +180,10 @@ struct ContentView: View { } else { mapSection .sheet( - isPresented: .constant(!(searchObserver.isSearching && nav == .nearby)), + isPresented: .constant( + !(searchObserver.isSearching && nav == .nearby) + && selectedTab == .nearby + ), content: { GeometryReader { proxy in VStack { diff --git a/iosApp/iosApp/Pages/More/MorePage.swift b/iosApp/iosApp/Pages/More/MorePage.swift index 17bf1df98..6d9de0b0e 100644 --- a/iosApp/iosApp/Pages/More/MorePage.swift +++ b/iosApp/iosApp/Pages/More/MorePage.swift @@ -47,7 +47,7 @@ struct MorePage: View { } HStack(alignment: .center, spacing: 16) { Image(.mbtaLogo).resizable().frame(width: 64, height: 64) - Text("Made with ♥ in Boston, for Boston").font(Typography.callout) + Text("Made with ♥ by the T").font(Typography.callout) } } .padding(.horizontal, 16)