diff --git a/frontend/src/pages/About.tsx b/frontend/src/pages/About.tsx index 42b1d1b..c0883eb 100644 --- a/frontend/src/pages/About.tsx +++ b/frontend/src/pages/About.tsx @@ -11,7 +11,7 @@ const About: React.FC = () => { const fetchReadme = async () => { try { const response = await fetch( - 'https://raw.githubusercontent.com/pektezol/lphub/typescript/README.md' + 'https://raw.githubusercontent.com/pektezol/lphub/main/README.md' ); if (!response.ok) { throw new Error('Failed to fetch README'); diff --git a/frontend/src/pages/Rules.tsx b/frontend/src/pages/Rules.tsx index 6a91123..340a9f6 100644 --- a/frontend/src/pages/Rules.tsx +++ b/frontend/src/pages/Rules.tsx @@ -11,7 +11,7 @@ const Rules: React.FC = () => { const fetchRules = async () => { try { const response = await fetch( - 'https://raw.githubusercontent.com/pektezol/lphub/typescript/RULES.md' + 'https://raw.githubusercontent.com/pektezol/lphub/main/RULES.md' ); if (!response.ok) { throw new Error('Failed to fetch README');