Skip to content

Commit

Permalink
bfix: archive and pin project
Browse files Browse the repository at this point in the history
  • Loading branch information
yp969803 committed Feb 14, 2024
1 parent 24b6897 commit d38a4a7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Empty file removed src/app/api/.gitkeep
Empty file.
4 changes: 2 additions & 2 deletions src/features/workspace/components/projectCard/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ const ProjectCard: React.FC<Props> = ({
const [showPopUp, setShowPopUp] = useState(false);
const userContext = useContext(UserContext);
const navigate = useNavigate();
const [pin, setPin] = useState<boolean>(status.archeive);
const [archive, setArchive] = useState<boolean>(status.bookmark);
const [pin, setPin] = useState<boolean>(status.bookmark);
const [archive, setArchive] = useState<boolean>(status.archeive);
const [project, setProject]= useState<GetProject|null>(null)
const [projectMembers, setProjectMembers]= useState<{key:string, value: string}[]>([])

Expand Down

0 comments on commit d38a4a7

Please sign in to comment.