For anyone using `kvision-redux` module - the `red...
# kvision
r
For anyone using
kvision-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:
Copy code
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")
        }
    }
🙌 1