Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

folder conflict issue fix #213

Merged
merged 25 commits into from
Jul 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
7d8ac40
test vue
devvsakib May 29, 2024
0860a1a
new error added
devvsakib Jul 27, 2024
984aa91
Merge branch 'main' of github.com:devvsakib/github-error-solve into d…
devvsakib Jul 27, 2024
88c5648
doc indiv new page added
devvsakib Jul 27, 2024
a713c2a
major update on doc page
devvsakib Jul 27, 2024
d3390d3
husky removed
devvsakib Jul 27, 2024
c912a8f
Merge branch 'main' of github.com:devvsakib/github-error-solve into d…
devvsakib Jul 27, 2024
ac3e93c
some minor issue fix
devvsakib Jul 27, 2024
bc1a402
Merge branch 'main' into development
devvsakib Jul 27, 2024
e3d228a
conflict merge
devvsakib Jul 28, 2024
dcc0649
Merge branch 'main' of github.com:devvsakib/github-error-solve into d…
devvsakib Jul 28, 2024
912e06c
code clean up + code optimize for color
devvsakib Jul 28, 2024
451db3e
Merge branch 'development' of github.com:devvsakib/github-error-solve…
devvsakib Jul 28, 2024
b1ed039
new doc added
devvsakib Jul 28, 2024
6e72a4b
Merge branch 'main' into development
devvsakib Jul 28, 2024
86b0b2d
new post added + folder rename + minor changes
devvsakib Jul 28, 2024
aac7a8f
Merge branch 'development' of github.com:devvsakib/github-error-solve…
devvsakib Jul 28, 2024
7e228d6
conflict resolve
devvsakib Jul 28, 2024
6a69249
background color darker
devvsakib Jul 28, 2024
cd89789
ui + doc page issue fix
devvsakib Jul 28, 2024
83dcbde
Merge branch 'main' into development
devvsakib Jul 28, 2024
44780b4
try 1 for api issue
devvsakib Jul 28, 2024
c3fd566
Merge branch 'development' of github.com:devvsakib/github-error-solve…
devvsakib Jul 28, 2024
94c49db
Merge branch 'main' of github.com:devvsakib/github-error-solve into d…
devvsakib Jul 28, 2024
373e37f
folder conflict issue fix
devvsakib Jul 28, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
5 changes: 0 additions & 5 deletions public/posts/index.json

This file was deleted.

122 changes: 0 additions & 122 deletions public/posts/pull_request_tutorial_for_beginners.md

This file was deleted.

2 changes: 1 addition & 1 deletion src/pages/Doc/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const DocList = () => {
useEffect(() => {
const fetchDocs = async () => {
try {
const response = await fetch('https://github-error-solve.vercel.app/docs/index.json');
const response = await fetch('/posts/index.json');
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Doc/single doc/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const DocDetail = () => {
useEffect(() => {
const fetchContent = async () => {
try {
const response = await fetch(`/docs/${slug}.md`);
const response = await fetch(`/posts/${slug}.md`);
if (!response.ok) {
throw new Error(`Failed to fetch content: ${response.statusText}`);
}
Expand Down