We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b5661ab commit 875da47Copy full SHA for 875da47
1 file changed
app/src/lib/utils/fetch-readme.ts
@@ -13,7 +13,7 @@ export async function fetchReadmeForSlug(
13
const res = await fetchFn(project.readmeURL);
14
if (res.ok) {
15
console.log(`Successfully fetched README from GitHub URL: ${project.readmeURL}`);
16
- const baseRawURL = `https://raw.githubusercontent.com/codevogel/${slug}/refs/heads/main/'`;
+ const baseRawURL = `https://raw.githubusercontent.com/codevogel/${slug}/refs/heads/main/`;
17
readme = await res.text();
18
// Adjust relative paths in the README to absolute URLs
19
return readme.replace(
0 commit comments