Next.js Discord

Discord Forum

Sub layout not receiving Params server side.

Answered
Bully Kutta posted this in #help-forum
Open in Discord
Bully KuttaOP
Hello. I have the following folders structure:

Where the sub layout is server side and main layout client side. The problem is on this Sublayout im receiving only the 'lang' param from Params like below:
export default async function GameLayout({ children, params }) {
  // Desestruturação segura com fallback
  console.log('AWAITED PARAMS', await params);
  // output { locale: 'en' }

Why is not receiving all params ? Thanks
Answered by Bully Kutta
Fixed ✅ just realize that Layouts can only receive the Params from the same level of the folder he is
View full answer

1 Reply

Bully KuttaOP
Fixed ✅ just realize that Layouts can only receive the Params from the same level of the folder he is
Answer