diff --git a/core/datastore/src/commonMain/kotlin/org/mifos/mobile/core/datastore/UserPreferencesRepository.kt b/core/datastore/src/commonMain/kotlin/org/mifos/mobile/core/datastore/UserPreferencesRepository.kt index 5e1ba564e..5d17c5b34 100644 --- a/core/datastore/src/commonMain/kotlin/org/mifos/mobile/core/datastore/UserPreferencesRepository.kt +++ b/core/datastore/src/commonMain/kotlin/org/mifos/mobile/core/datastore/UserPreferencesRepository.kt @@ -11,10 +11,10 @@ package org.mifos.mobile.core.datastore import kotlinx.coroutines.flow.Flow import kotlinx.coroutines.flow.StateFlow +import org.mifos.mobile.core.common.DataState import org.mifos.mobile.core.datastore.model.AppSettings import org.mifos.mobile.core.datastore.model.AppTheme import org.mifos.mobile.core.datastore.model.UserData -import org.mifospay.core.common.DataState interface UserPreferencesRepository { val userInfo: Flow diff --git a/core/datastore/src/commonMain/kotlin/org/mifos/mobile/core/datastore/UserPreferencesRepositoryImpl.kt b/core/datastore/src/commonMain/kotlin/org/mifos/mobile/core/datastore/UserPreferencesRepositoryImpl.kt index 42756439b..5dd76cea5 100644 --- a/core/datastore/src/commonMain/kotlin/org/mifos/mobile/core/datastore/UserPreferencesRepositoryImpl.kt +++ b/core/datastore/src/commonMain/kotlin/org/mifos/mobile/core/datastore/UserPreferencesRepositoryImpl.kt @@ -15,10 +15,10 @@ import kotlinx.coroutines.flow.Flow import kotlinx.coroutines.flow.SharingStarted import kotlinx.coroutines.flow.StateFlow import kotlinx.coroutines.flow.stateIn +import org.mifos.mobile.core.common.DataState import org.mifos.mobile.core.datastore.model.AppSettings import org.mifos.mobile.core.datastore.model.AppTheme import org.mifos.mobile.core.datastore.model.UserData -import org.mifospay.core.common.DataState class UserPreferencesRepositoryImpl( private val preferenceManager: UserPreferencesDataSource,