From d38a4a726941bbbf1589cc149dfc53dc6c49c6ce Mon Sep 17 00:00:00 2001 From: yash Date: Wed, 14 Feb 2024 17:24:25 +0530 Subject: [PATCH] bfix: archive and pin project --- src/app/api/.gitkeep | 0 src/features/workspace/components/projectCard/index.tsx | 4 ++-- 2 files changed, 2 insertions(+), 2 deletions(-) delete mode 100644 src/app/api/.gitkeep diff --git a/src/app/api/.gitkeep b/src/app/api/.gitkeep deleted file mode 100644 index e69de29..0000000 diff --git a/src/features/workspace/components/projectCard/index.tsx b/src/features/workspace/components/projectCard/index.tsx index 5b8528d..4385aeb 100644 --- a/src/features/workspace/components/projectCard/index.tsx +++ b/src/features/workspace/components/projectCard/index.tsx @@ -38,8 +38,8 @@ const ProjectCard: React.FC = ({ const [showPopUp, setShowPopUp] = useState(false); const userContext = useContext(UserContext); const navigate = useNavigate(); - const [pin, setPin] = useState(status.archeive); - const [archive, setArchive] = useState(status.bookmark); + const [pin, setPin] = useState(status.bookmark); + const [archive, setArchive] = useState(status.archeive); const [project, setProject]= useState(null) const [projectMembers, setProjectMembers]= useState<{key:string, value: string}[]>([])