Hi everyone, I upgraded my kotlin multiplatform fr...
# multiplatform
h
Hi everyone, I upgraded my kotlin multiplatform from
1.7.20-Beta
to
1.9.22
and sending props to my components has broken. Previously this worked -
Copy code
val App = FC<Props> { _ ->
    Component1 {
        prop1 = value1
        prop2 = value2
    }
}
However, I am now getting an error
Uncaught TypeError: $this$invoke.set_prop1_pzbc64_k$ is not a function
. Was there a change to the syntax that I have to do?
a
updating the kotlin version sometimes needs a clean build. Did you do a clean build?
h
Ah, that got me a new error. This looks promising. Thank you!