diff --git a/web/components/groups/group-chat.tsx b/web/components/groups/group-chat.tsx
index 62d327f2..0f9e8955 100644
--- a/web/components/groups/group-chat.tsx
+++ b/web/components/groups/group-chat.tsx
@@ -21,6 +21,7 @@ import { Content, useTextEditor } from 'web/components/editor'
import { useUnseenPreferredNotifications } from 'web/hooks/use-notifications'
import { ChevronDownIcon, UsersIcon } from '@heroicons/react/outline'
import { setNotificationsAsSeen } from 'web/pages/notifications'
+import { usePrivateUser } from 'web/hooks/use-user'
export function GroupChat(props: {
messages: Comment[]
@@ -29,6 +30,9 @@ export function GroupChat(props: {
tips: CommentTipMap
}) {
const { messages, user, group, tips } = props
+
+ const privateUser = usePrivateUser(user?.id)
+
const { editor, upload } = useTextEditor({
simple: true,
placeholder: 'Send a message',
@@ -175,6 +179,15 @@ export function GroupChat(props: {
)}
+
+ {privateUser && (
+