Michał Konkel
01/02/2024, 12:50 PMktor-client
for the wasm
in compose multiplatform project.
Long story short - invoking the request causes web page to reloads.
LaunchedEffect() {
fetchUsers()
}
...
suspend fun fetchUsers() {
delay(5000)
return listOf(User, User)
}
Works OK
LaunchedEffect() {
<http://client.post|client.post>("/login") ...
}
...
client = HttpClient { ... }
Infinite loopAleksei Tirman [JB]
01/03/2024, 8:01 AMMichał Konkel
01/06/2024, 8:39 AM