Skip to content

Commit

Permalink
cleanup: remove stray logs
Browse files Browse the repository at this point in the history
  • Loading branch information
KaylaBrady committed Jan 10, 2025
1 parent e021aa7 commit 739a0e2
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
package com.mbta.tid.mbta_app.android.state

import android.util.Log
import androidx.compose.runtime.Composable
import androidx.compose.runtime.LaunchedEffect
import androidx.compose.runtime.collectAsState
Expand Down Expand Up @@ -32,10 +31,7 @@ class ScheduleViewModel(
fetchApi(
errorBannerRepo = errorBannerRepository,
errorKey = "ScheduleViewModel.getSchedule",
getData = {
Log.i("KB", "fetch for stops ${stopIds}")
schedulesRepository.getSchedule(stopIds, Clock.System.now())
},
getData = { schedulesRepository.getSchedule(stopIds, Clock.System.now()) },
onSuccess = { _schedule.value = it },
onRefreshAfterError = { getSchedule(stopIds) }
)
Expand Down

0 comments on commit 739a0e2

Please sign in to comment.