We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have essentially 2 pages, on host.com/ and onhost.com/:detailId.
host.com/
host.com/:detailId
Now, basically the structure is like this:
const Home: Component = () => { return ( <MetaProvider> <Title>Home</Title>
const Detail: Component = () => { return ( <MetaProvider> <Title>{detailData()?.title || ''}</Title>
but the result is like this
Why does the detail page that is currently not rendered still overwrite the <Title> ?
<Title>
This only happens when I programmatically do navigate('/', { resolve: false }), not when I use the browser back/forward buttons.
navigate('/', { resolve: false })
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have essentially 2 pages, on
host.com/
and onhost.com/:detailId
.Now, basically the structure is like this:
but the result is like this
Screen.Recording.2023-02-07.at.17.01.22.mov
Why does the detail page that is currently not rendered still overwrite the
<Title>
?This only happens when I programmatically do
navigate('/', { resolve: false })
, not when I use the browser back/forward buttons.The text was updated successfully, but these errors were encountered: