Skip to content

Commit

Permalink
Show memberStatus (Joined, Invited) closes #126
Browse files Browse the repository at this point in the history
  • Loading branch information
pierrelefevre committed Dec 14, 2023
1 parent f8a0029 commit a9ae6d8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/pages/teams/Teams.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import {
Typography,
} from "@mui/material";
import { useKeycloak } from "@react-keycloak/web";
import { sentenceCase } from "change-case";
import { enqueueSnackbar } from "notistack";
import { useEffect, useState } from "react";
import { useTranslation } from "react-i18next";
Expand Down Expand Up @@ -252,7 +253,10 @@ const Teams = () => {
member.username}
</TableCell>
<TableCell>
{member.teamRole}
{sentenceCase(member.teamRole)}
</TableCell>
<TableCell>
{sentenceCase(member.memberStatus)}
</TableCell>
<TableCell
align="right"
Expand Down

0 comments on commit a9ae6d8

Please sign in to comment.