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
If RenderHandler has a context set that isn't available by name in the surrounding provider (there was no DataHandler with the given name) then rendering is broken.
If
RenderHandler
has acontext
set that isn't available by name in the surrounding provider (there was noDataHandler
with the givenname
) then rendering is broken.the offending line is:
leads to trying to make a
<context.Consumer>
which can't getConsumer
ofundefined
Solution: check for
context
missing aftergetContext(ctxName)
call and handle itThe text was updated successfully, but these errors were encountered: