Skip to content

Commit

Permalink
Apply formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
elver5041 authored and github-actions[bot] committed Oct 22, 2024
1 parent 9a537ee commit b9d0c36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/hackeps/Team/Team.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const Team = (props) => {
const handleShowJoinTeam = () => setShowJoinTeam(true);
const handleCloseJoinTeam = () => setShowJoinTeam(false);
const [err, setErr] = useState("");
const [JoinErrorMessage, setJoinErrorMessage] = useState("")
const [JoinErrorMessage, setJoinErrorMessage] = useState("");
async function handleKick(member) {
await removeHackerFromGroup(member.id, team.id);
setTeam(await getHackerGroupById(team.id));
Expand Down Expand Up @@ -67,7 +67,7 @@ const Team = (props) => {
setTeam(await getHackerGroupById(a.added_group_id));
setShowJoinTeam(false);
} else {
setJoinErrorMessage(a.errMssg)
setJoinErrorMessage(a.errMssg);
}
}

Expand Down

0 comments on commit b9d0c36

Please sign in to comment.