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
I expect any route that doesn't exist to redirect me to the home page.
That's my code: app/routes/home.tsx:
import{Link}from'react-router';importtype{Route}from'./+types/home';exportfunctionloader(){return{siteTitle: 'React Router'};}exportfunctionmeta({ data }: Route.MetaArgs){return[{title: data.siteTitle}];}exportdefaultfunctionHome(){return(<divclassName="text-center p-4"><ahref="/something"className="text-blue-700">
Click here to navigate to a nonexistent page
</a><pclassName="max-w-72 mt-2 mx-auto">
I'm using the {'<a>'} element on purpose because the error only appears
when the user enters the link manually or clicks on a link causing a
full-page reload.
</p></div>);
TypeError: Cannot read properties of null (reading 'siteTitle')
at Module.meta (https://yqnimyzmnygithub-nl3w--5173--5a421e5b.local-credentialless.webcontainer.io/app/routes/home.tsx?import:8:17)
at Meta (https://yqnimyzmnygithub-nl3w--5173--5a421e5b.local-credentialless.webcontainer.io/node_modules/.vite/deps/chunk-KAMMW474.js?v=cc8d863b:8332:72)
at react-stack-bottom-frame (https://yqnimyzmnygithub-nl3w--5173--5a421e5b.local-credentialless.webcontainer.io/node_modules/.vite/deps/react-dom_client.js?v=92e97bab:16190:20)
at renderWithHooks (https://yqnimyzmnygithub-nl3w--5173--5a421e5b.local-credentialless.webcontainer.io/node_modules/.vite/deps/react-dom_client.js?v=92e97bab:4304:24)
at updateFunctionComponent (https://yqnimyzmnygithub-nl3w--5173--5a421e5b.local-credentialless.webcontainer.io/node_modules/.vite/deps/react-dom_client.js?v=92e97bab:5970:21)
at beginWork (https://yqnimyzmnygithub-nl3w--5173--5a421e5b.local-credentialless.webcontainer.io/node_modules/.vite/deps/react-dom_client.js?v=92e97bab:7046:20)
at runWithFiberInDEV (https://yqnimyzmnygithub-nl3w--5173--5a421e5b.local-credentialless.webcontainer.io/node_modules/.vite/deps/react-dom_client.js?v=92e97bab:724:18)
at performUnitOfWork (https://yqnimyzmnygithub-nl3w--5173--5a421e5b.local-credentialless.webcontainer.io/node_modules/.vite/deps/react-dom_client.js?v=92e97bab:10829:98)
at workLoopSync (https://yqnimyzmnygithub-nl3w--5173--5a421e5b.local-credentialless.webcontainer.io/node_modules/.vite/deps/react-dom_client.js?v=92e97bab:10690:43)
at renderRootSync (https://yqnimyzmnygithub-nl3w--5173--5a421e5b.local-credentialless.webcontainer.io/node_modules/.vite/deps/react-dom_client.js?v=92e97bab:10673:13)
The text was updated successfully, but these errors were encountered:
I'm using React Router as a...
framework
Reproduction
System Info
Used Package Manager
pnpm
Expected Behavior
I expect any route that doesn't exist to redirect me to the home page.
That's my code:
app/routes/home.tsx
:That's my error boundary inside
root.tsx
:Actual Behavior
I'm getting this error:
The text was updated successfully, but these errors were encountered: