Skip to content

Commit d8aba05

Browse files
fix(core:datastore): Correct incorrect import of DataState in datasto… (openMF#2759)
1 parent 95c5666 commit d8aba05

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/datastore/src/commonMain/kotlin/org/mifos/mobile/core/datastore/UserPreferencesRepository.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ package org.mifos.mobile.core.datastore
1111

1212
import kotlinx.coroutines.flow.Flow
1313
import kotlinx.coroutines.flow.StateFlow
14+
import org.mifos.mobile.core.common.DataState
1415
import org.mifos.mobile.core.datastore.model.AppSettings
1516
import org.mifos.mobile.core.datastore.model.AppTheme
1617
import org.mifos.mobile.core.datastore.model.UserData
17-
import org.mifospay.core.common.DataState
1818

1919
interface UserPreferencesRepository {
2020
val userInfo: Flow<UserData>

core/datastore/src/commonMain/kotlin/org/mifos/mobile/core/datastore/UserPreferencesRepositoryImpl.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ import kotlinx.coroutines.flow.Flow
1515
import kotlinx.coroutines.flow.SharingStarted
1616
import kotlinx.coroutines.flow.StateFlow
1717
import kotlinx.coroutines.flow.stateIn
18+
import org.mifos.mobile.core.common.DataState
1819
import org.mifos.mobile.core.datastore.model.AppSettings
1920
import org.mifos.mobile.core.datastore.model.AppTheme
2021
import org.mifos.mobile.core.datastore.model.UserData
21-
import org.mifospay.core.common.DataState
2222

2323
class UserPreferencesRepositoryImpl(
2424
private val preferenceManager: UserPreferencesDataSource,

0 commit comments

Comments
 (0)