From 313ae6564b7d74434f88216b61041ffa453519cf Mon Sep 17 00:00:00 2001 From: Youssef Date: Tue, 1 Mar 2022 22:23:23 +0100 Subject: [PATCH] fix: import ProjectCard --- frontend/src/component/project/ProjectList/ProjectList.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/component/project/ProjectList/ProjectList.tsx b/frontend/src/component/project/ProjectList/ProjectList.tsx index 1d9f3c8819..173adcb080 100644 --- a/frontend/src/component/project/ProjectList/ProjectList.tsx +++ b/frontend/src/component/project/ProjectList/ProjectList.tsx @@ -4,7 +4,7 @@ import { mutate } from 'swr'; import { getProjectFetcher } from 'hooks/api/getters/useProject/getProjectFetcher'; import useProjects from 'hooks/api/getters/useProjects/useProjects'; import ConditionallyRender from 'component/common/ConditionallyRender/ConditionallyRender'; -import ProjectCard from '../ProjectCard/ProjectCard'; +import { ProjectCard } from '../ProjectCard/ProjectCard'; import { useStyles } from './ProjectList.styles'; import { IProjectCard } from 'interfaces/project'; import loadingData from './loadingData';