Next.js Discord

Discord Forum

Params should be awaited

Unanswered
European sprat posted this in #help-forum
Open in Discord
European spratOP
I'm building next project and getting this error, whenever I try to make changes in edit product country section I can't able to see anything. I was supposed to see countries and other details as well

1 Reply

in next 15 params and searchParams are asynchronous and must be awaited to use them

params example
export default async function 
EditProductPage({ params }: { params: Promise<{ productId: string }> }) {

  const {productId} = await params;


same applies to searchParams