next-learn icon indicating copy to clipboard operation
next-learn copied to clipboard

adding-search-and-pagination wrong highlight

Open dobernike opened this issue 1 year ago • 0 comments

https://nextjs.org/learn/dashboard-app/adding-search-and-pagination

image

Need to highlight:

      <Suspense key={query + currentPage} fallback={<InvoicesTableSkeleton />}>
        <Table query={query} currentPage={currentPage} />
      </Suspense>

instead of

        <Table query={query} currentPage={currentPage} />
     </Suspense>
     <div className="mt-5 flex w-full justify-center">

and here:

image

dobernike avatar Dec 02 '24 19:12 dobernike