style: projects list page

This commit is contained in:
Aaryan Khandelwal 2023-03-01 14:11:27 +05:30
parent 76b8b9eaef
commit 6afcf1f0e3
9 changed files with 214 additions and 90 deletions

View file

@ -57,6 +57,7 @@ const ProjectsPage: NextPage = () => {
onJoin={async () => {
const project = projects?.find((item) => item.id === selectedProjectToJoin);
if (!project) return;
await projectService
.joinProject(workspaceSlug as string, {
project_ids: [project.id],