We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a1083f commit 566f5c8Copy full SHA for 566f5c8
apps/nextjs/src/app/(dashboard)/details/[itemId]/page.tsx
@@ -16,7 +16,7 @@ export async function generateMetadata({
16
}: {
17
params: { itemId?: string };
18
}): Promise<Metadata> {
19
- const url = encodeURIComponent(params.itemId ?? "");
+ const url = decodeURIComponent(params.itemId ?? "");
20
let extractedData;
21
try {
22
0 commit comments