We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bf2543 commit ee53cfdCopy full SHA for ee53cfd
src/app/extension/[id]/page.tsx
@@ -36,7 +36,7 @@ const getExtensionDoc = async (id: string) => {
36
async function getExtensionInformation(
37
id: string
38
): Promise<APIExtension | null> {
39
- const response = await fetch(INDEX_URL, {
+ const response = await fetch(`${INDEX_URL}?key=${encodeURIComponent(id)}`, {
40
next: {
41
revalidate: 60,
42
},
0 commit comments