Next.js Discord

Discord Forum

not-found.js not accepting props

Answered
Alaska pollock posted this in #help-forum
Open in Discord
Avatar
Alaska pollockOP
not-found.js components do not accept any props. How are we supposed to translate it to other languages if it doesn't accept any props?
Answered by DirtyCajunRice | AppDir
the simplest way - if path - is to make not-found a client component, and do useParams()
View full answer

6 Replies

Avatar
DirtyCajunRice | AppDir
is your language set in headers, or in path only
Avatar
Alaska pollockOP
i'm using nextjs Internationalization, so dynamic routes
Avatar
DirtyCajunRice | AppDir
the simplest way - if path - is to make not-found a client component, and do useParams()
Answer
Avatar
DirtyCajunRice | AppDir
if you want it to be a server component, you need to use headers() get the path from headers, and parse the path yourself
either way gets you what you need.
Avatar
Alaska pollockOP
understood, preciate the help 🤝