Skip to content

Commit

Permalink
run pre-commit that was skipped in rebase somehow
Browse files Browse the repository at this point in the history
  • Loading branch information
JackVCurtis committed Jan 8, 2025
1 parent a0b88db commit b9ea7be
Showing 1 changed file with 6 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import androidx.compose.runtime.getValue
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember
import androidx.compose.runtime.setValue
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.focus.FocusRequester
import androidx.compose.ui.layout.boundsInWindow
Expand All @@ -36,7 +35,6 @@ import androidx.navigation.toRoute
import com.mapbox.maps.MapboxExperimental
import com.mbta.tid.mbta_app.android.SheetRoutes
import com.mbta.tid.mbta_app.android.component.DragHandle
import com.mbta.tid.mbta_app.android.component.LocationAuthButton
import com.mbta.tid.mbta_app.android.component.sheet.BottomSheetScaffold
import com.mbta.tid.mbta_app.android.component.sheet.BottomSheetScaffoldState
import com.mbta.tid.mbta_app.android.component.sheet.SheetValue
Expand Down Expand Up @@ -245,15 +243,15 @@ fun NearbyTransitPage(
onOpenStopDetails = { stopId, filter ->
updateVisitHistory(stopId)
navController.navigate(
SheetRoutes.StopDetails(
stopId,
filter?.routeId,
filter?.directionId
)
SheetRoutes.StopDetails(stopId, filter?.routeId, filter?.directionId)
)
},
noNearbyStopsView = {
NoNearbyStopsView(nearbyTransit.hideMaps, ::openSearch, ::panToDefaultCenter)
NoNearbyStopsView(
nearbyTransit.hideMaps,
::openSearch,
::panToDefaultCenter
)
}
)
}
Expand Down

0 comments on commit b9ea7be

Please sign in to comment.