We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dd11ac commit 26d6215Copy full SHA for 26d6215
netlify/edge-functions/latest.ts
@@ -14,7 +14,7 @@ export default async (request: Request): Promise<Response> => {
14
);
15
const modifiedData = data.map((item: any) => ({
16
...item,
17
- short_url: `${urlBase}/${item.short_url}`,
+ short_url: `${urlBase}${item.short_url}`,
18
}));
19
20
return new Response(JSON.stringify(modifiedData), { status: 200, headers });
0 commit comments