File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -5,9 +5,6 @@ document.addEventListener('DOMContentLoaded', () => {
55} ) ;
66
77async function loadDescription ( ) {
8- const req = await fetch ( 'https://api.github.com/users/dev2forge' ) ;
9- // const res = await req.json();
10-
118 // Markdown to HTML conversion
129 const converter = new showdown . Converter ( { tables : true } ) ;
1310 const readme = await fetch ( 'https://raw.githubusercontent.com/Dev2Forge/.github/refs/heads/main/profile/README.md' ) ;
@@ -28,7 +25,7 @@ async function loadRepos() {
2825 const container = document . querySelector ( '#carrusel-repos' ) ;
2926 const configsWeb = await loadConfigs ( ) ;
3027 try {
31- const res = await fetch ( 'https://api.github.com/orgs/dev2forge /repos' ) ;
28+ const res = await fetch ( 'https://api.github.com/users/Dev2Forge /repos' ) ;
3229 const repos = await res . json ( ) ;
3330 repos . forEach ( ( repo ) => {
3431 // Skip repositories that are not in the configsWeb list
You can’t perform that action at this time.
0 commit comments