TP-48264 User is not able to select/edit a number at a specific place in the monthly income input field (#234)

This commit is contained in:
Aparna Vadlamani
2023-11-09 16:41:19 +05:30
committed by GitHub
parent cd83965ab8
commit 2406bfcabe
4 changed files with 47 additions and 5 deletions

View File

@@ -2,12 +2,16 @@ package com.uitron.demo.dazzledesignsystem.network
import okhttp3.OkHttpClient
import okhttp3.logging.HttpLoggingInterceptor
import java.util.concurrent.TimeUnit
class HttpClient {
val httpClientBuilder: OkHttpClient.Builder
get() {
val okHttpClientBuilder = OkHttpClient.Builder()
with(okHttpClientBuilder) {
connectTimeout(60, TimeUnit.SECONDS)
writeTimeout(60, TimeUnit.SECONDS)
readTimeout(60, TimeUnit.SECONDS)
addInterceptor(loggingInterceptor())
}
return okHttpClientBuilder