We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Hi, The rerender function's signature on v6 is:
rerender(props: object): Promise<void>
But this is how it works:
rerender({ props: { error: false } })
I think the props key is redundant and misleading here and it needs to be something like:
props
rerender({ error: false })