From e731f58648da4a79497413e704af1909c89f8445 Mon Sep 17 00:00:00 2001 From: Arda Serdar Pektezol <1669855+pektezol@users.noreply.github.com> Date: Fri, 1 Nov 2024 20:09:44 +0300 Subject: [PATCH] docs: merge to main branch --- frontend/src/pages/About.tsx | 2 +- frontend/src/pages/Rules.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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');