Skip to content

Commit

Permalink
Fix lint issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomazFB committed Dec 12, 2024
1 parent 85477d2 commit c8a8eba
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ import kotlinx.coroutines.flow.flatMapLatest
import kotlinx.coroutines.flow.flow
import kotlinx.coroutines.flow.flowOf
import kotlinx.coroutines.flow.onStart
import kotlinx.coroutines.flow.update
import kotlinx.coroutines.launch
import javax.inject.Inject
import kotlinx.coroutines.flow.update

@HiltViewModel
class WooShippingLabelCreationViewModel @Inject constructor(
Expand All @@ -51,6 +51,7 @@ class WooShippingLabelCreationViewModel @Inject constructor(
private val refreshShippingRates = MutableSharedFlow<Unit>()

private val selectedPackage = MutableStateFlow<PackageSelectionState>(NotSelected)

@OptIn(ExperimentalCoroutinesApi::class)
private val shippingRates =
combine(
Expand Down

0 comments on commit c8a8eba

Please sign in to comment.