Skip to content

Commit

Permalink
Set ghost to false on club approval decision
Browse files Browse the repository at this point in the history
  • Loading branch information
aviupadhyayula committed Nov 6, 2024
1 parent 3a002c4 commit c1d6289
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions frontend/components/ClubPage/ClubApprovalDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,7 @@ const ClubApprovalDialog = ({ club }: Props): ReactElement | null => {
body: {
approved: true,
approved_comment: comment,
ghost: false,
},
})
.then(() => router.reload())
Expand All @@ -283,6 +284,7 @@ const ClubApprovalDialog = ({ club }: Props): ReactElement | null => {
body: {
approved: false,
approved_comment: comment,
ghost: false,
},
})
.then(() => router.reload())
Expand Down

0 comments on commit c1d6289

Please sign in to comment.