diff --git a/shared/src/commonMain/kotlin/org/hyperskill/app/debug/cache/DebugCacheDataSourceImpl.kt b/shared/src/commonMain/kotlin/org/hyperskill/app/debug/cache/DebugCacheDataSourceImpl.kt index 385da087e8..bcd70094d2 100644 --- a/shared/src/commonMain/kotlin/org/hyperskill/app/debug/cache/DebugCacheDataSourceImpl.kt +++ b/shared/src/commonMain/kotlin/org/hyperskill/app/debug/cache/DebugCacheDataSourceImpl.kt @@ -8,7 +8,7 @@ class DebugCacheDataSourceImpl(private val settings: Settings) : DebugCacheDataS override fun getEndpointConfig(): EndpointConfigType { val cachedEndpointConfigName = settings.getString( key = DebugCacheKeyValues.ENDPOINT_CONFIG, - defaultValue = EndpointConfigType.PRODUCTION.name + defaultValue = EndpointConfigType.MAIN.name ) return EndpointConfigType.valueOf(cachedEndpointConfigName) }