fix Projects skeleton

This commit is contained in:
Timothée Goguely 2025-05-14 17:27:26 +02:00
parent 79ac095c5d
commit 73722aadc2
2 changed files with 4 additions and 8 deletions

View file

@ -26,8 +26,8 @@ export const useProjectsStore = defineStore('projects', () => {
const api = useApiStore();
api.fetchData('projects').then((json) => {
isProjectsLoading.value = false;
// setTimeout(() => {
isProjectsLoading.value = false;
projects.value = json.page.children;
// }, 3000);
});