Ken Yee
Ken Yee
Could you update the docs to tell folks to avoid this pattern in the viewmodel? ``` init { viewModelScope.launch { employeeRepository.employeesFlow.collect { handleRepositoryUpdate(it) } } } ``` Works fine when...
I'd use it in my accounts-admin-ui package...would allow multiple user deletes.
Oh now I see...I should have tested in different browsers. I use FF normally (I know, Chrome is faster but my bookmarks are all in FF :-) On Chrome: -...
Interesting...that must be a new Meteor guide. If it's a client.call with a single object parameter, it'd be an object, so it'd look like this: {uuid: "uuid", name: "name"} The...
can I see the code you're using to connect? It sounds like you have to open port 3000 in your docker compose file...
+1 fork it unless we're locked out from merging PRs. Apache license should be fine :-) On Sun, Nov 20, 2022 at 3:39 PM Chris Banes ***@***.***> wrote: > You...
LOL...they took away all of our approval permissions? 😹 🤦
Yo Elon...not cool
Thanks! That did work out well. An example probably should be added to the docs. expectThrows { }.message().isNotNull().contains("...") would be slightly nicer...
Another example w/ Java17 (worked fine w/ Java11): ``` sealed class PlayerData { data class EventEnd( val timer: Int, val requestId: String?, val uuid: String?, ) : PlayerData() } ```...