Skip to content

Commit

Permalink
docs: merge to main branch
Browse files Browse the repository at this point in the history
  • Loading branch information
pektezol committed Nov 1, 2024
1 parent cd80c6a commit e731f58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/src/pages/About.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/Rules.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit e731f58

Please sign in to comment.