You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The img.decode() is an asynchronous and potentially slow process that is required for image rasterization. This is managed by Recoil's async selector and is accessed via useRecoilValueLoadable(). This now waits for all images to be decoded and will return all of them together.
Ask:
Explore breaking down the selected values e.g. using selectorFamily such that each image can be loaded individually.
Or, explore if there are other possibilities.
The text was updated successfully, but these errors were encountered:
Background:
The
img.decode()
is an asynchronous and potentially slow process that is required for image rasterization. This is managed by Recoil's async selector and is accessed viauseRecoilValueLoadable()
. This now waits for all images to be decoded and will return all of them together.Ask:
Explore breaking down the selected values e.g. using
selectorFamily
such that each image can be loaded individually.Or, explore if there are other possibilities.
The text was updated successfully, but these errors were encountered: