diff --git a/README.md b/README.md index 887ea1b..cec96d4 100644 --- a/README.md +++ b/README.md @@ -55,3 +55,4 @@ - [ ] Refactor TabPanels code - [ ] Refactor Lists code - [ ] Query project members in UserPage +- [ ] Query progression info in UserPage diff --git a/client/src/components/ProjectCard.tsx b/client/src/components/ProjectCard.tsx index bc9a1ef..600767c 100644 --- a/client/src/components/ProjectCard.tsx +++ b/client/src/components/ProjectCard.tsx @@ -18,15 +18,14 @@ interface IProps { const useStyles = makeStyles((theme: Theme) => createStyles({ progress: { - paddingTop: theme.spacing(4), - paddingBottom: theme.spacing(4), + paddingTop: theme.spacing(2), }, }) ); const ProjectCard: FC = ({ title, - remainingDays, + remainingDays = "", link = "#", members, progress = 0, @@ -38,10 +37,7 @@ const ProjectCard: FC = ({ <> {members && }
- {/* - Progression: - */} - +
);