Skip to content

Commit 875da47

Browse files
committed
fix: remove ' from baseRawURL
1 parent b5661ab commit 875da47

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/src/lib/utils/fetch-readme.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export async function fetchReadmeForSlug(
1313
const res = await fetchFn(project.readmeURL);
1414
if (res.ok) {
1515
console.log(`Successfully fetched README from GitHub URL: ${project.readmeURL}`);
16-
const baseRawURL = `https://raw.githubusercontent.com/codevogel/${slug}/refs/heads/main/'`;
16+
const baseRawURL = `https://raw.githubusercontent.com/codevogel/${slug}/refs/heads/main/`;
1717
readme = await res.text();
1818
// Adjust relative paths in the README to absolute URLs
1919
return readme.replace(

0 commit comments

Comments
 (0)