Skip to content
Snippets Groups Projects
Commit c8acd14d authored by Olivier Goulet's avatar Olivier Goulet
Browse files

fix: featured committer project not loading

parent 881e3dea
No related branches found
No related tags found
2 merge requests!221feat: Add specification section to project resources,!209fix: featured committer project not loading
Pipeline #46227 passed with warnings
......@@ -36,7 +36,7 @@ const projectApiBaseUrl = "https://projects.eclipse.org/api";
const getProject = async projectId => {
try {
const response = await fetch(`${projectApiBaseUrl}/projects/${projectId}.json`);
const response = await fetch(`${projectApiBaseUrl}/projects/${projectId}`);
const data = await response.json();
if (data.length === 0) throw new Error('No project found.');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment