We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 607feb9 commit 1ab1ad9Copy full SHA for 1ab1ad9
2 files changed
app/learning/listing/page.tsx
@@ -21,7 +21,7 @@ export default async function DevResourceListingPage({
21
const type = (finalSearchParams?.type as string) || "all";
22
const tagFilter = (finalSearchParams?.tagFilter as string) || "";
23
const page = Number(finalSearchParams?.page) || 1;
24
- const limit = Number(finalSearchParams?.limit) || 6;
+ const limit = Number(finalSearchParams?.limit) || 20;
25
26
const { devResources, pagination } = await getDevResources({
27
tagFilter,
components/learning/devresource-header.js
@@ -15,7 +15,6 @@ import Link from 'next/link';
15
16
export const DevResourceHeader = ({
17
devResource,
18
- myResource,
19
showImage = true,
20
linkback="/learning/listing"
}) => {
0 commit comments