fix(core:datastore): Correct incorrect import of DataState in datasto… (#2759)

This commit is contained in:
Hekmatullah 2025-02-05 14:45:50 +00:00 committed by Rajan Maurya
parent 6dd9794eba
commit 6797bf695b
2 changed files with 2 additions and 2 deletions

View File

@ -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<UserData>

View File

@ -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,