diff --git a/web/src/ui/timeline/content/MemberBody.tsx b/web/src/ui/timeline/content/MemberBody.tsx index 4b7c501..c501ecc 100644 --- a/web/src/ui/timeline/content/MemberBody.tsx +++ b/web/src/ui/timeline/content/MemberBody.tsx @@ -99,6 +99,8 @@ function useChangeDescription( if (sender === target) { if (prevContent?.membership === "knock") { return "cancelled their join request" + } else if (prevContent?.membership === "invite") { + return "rejected the invite" } return "left the room" }