Robert Jaros
10/26/2021, 9:04 AMkvision-redux
module - the redux-thunk 2.4.0
(released today) is incompatible with the previous version and breaks KVision apps. The problem will be fixed with the next KVision release. Until then use kvision-redux-kotlin
module instead or downgrade redux-thunk
with:
rootProject.plugins.withType<org.jetbrains.kotlin.gradle.targets.js.yarn.YarnPlugin> {
rootProject.the<org.jetbrains.kotlin.gradle.targets.js.yarn.YarnRootExtension>().apply {
resolution("redux-thunk", "2.3.0")
}
}