Navigation error
I get a weird
cleanNode()
exception when navigating to another page.
The stack trace is useless (see in separate comment).
The navigation is performed by a <button>, it is trivial, nothing extra happens there: <button onClick={() => navigate(...)} ...
Do you have any recommendation how to find the root of the error?
Thanks.3 Replies
Stack trace:
It is caused by a solidjs/meta
<Title>
component but I still don't understand how and why 🤔
If I replace <Title>{title()}</Title>
with
then the error is gone 😮Is title async?
Then wrapping title in Suspense might help
It is not async, it is a normal function.