diff --git a/app/src/components/Dashboard/DashboardHome.tsx b/app/src/components/Dashboard/DashboardHome.tsx index 058c0d2..6e9dce7 100644 --- a/app/src/components/Dashboard/DashboardHome.tsx +++ b/app/src/components/Dashboard/DashboardHome.tsx @@ -34,7 +34,6 @@ const DashboardHome: React.FC = () => { const fetchRecentProjects = async () => { try { const projects = await recentlyViewed(organization, userId); - console.log('projects: ', projects); if (JSON.stringify(projects) !== JSON.stringify(recentProjects)) { setRecentProjects(projects); diff --git a/app/src/components/Dashboard/DashboardProjects.tsx b/app/src/components/Dashboard/DashboardProjects.tsx index 4ec3878..ccb56b2 100644 --- a/app/src/components/Dashboard/DashboardProjects.tsx +++ b/app/src/components/Dashboard/DashboardProjects.tsx @@ -157,7 +157,6 @@ const DashboardProjects: React.FC = () => { const sharedProject = async () => { try { const sharedWithMe = await sharedWithMeProjects(); - console.log('sharedWithMe: ', sharedWithMe); setSharedWithMeProjects(sharedWithMe) } catch { diff --git a/app/src/components/templates/CollaborationPopup.tsx b/app/src/components/templates/CollaborationPopup.tsx index 4b196b7..2219bc7 100644 --- a/app/src/components/templates/CollaborationPopup.tsx +++ b/app/src/components/templates/CollaborationPopup.tsx @@ -79,7 +79,6 @@ const CollaborationPopup: React.FC = ({ if (!projectId) return; getProjectSharedList(projectId).then((allUser) => { const accesMail = allUser?.datas || [] - console.log('accesMail: ', accesMail); setUsers(accesMail) }).catch((err) => {