Replies: 1 comment
|
Hi @Magnuti, you can either check the |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I tested what happens when the row backing item is deleted while this view is on screen: item keeps serving the last-known value (it can't become nil, it's non-optional), and
$item.loadErrorbecomes NotFound(). Nothing crashes, but the view also never reflects that the row is gone.What's the recommended way to react to this (e.g. to dismiss the view)? Is checking
$item.loadErrorfor a NotFound the intended approach, or is there a better one?All reactions