Invert group chat feature gate (#10851)

This commit is contained in:
DS Boyce
2026-06-10 10:41:34 -07:00
committed by GitHub
parent 01054624ef
commit adb39b4442
4 changed files with 4 additions and 5 deletions
+1 -1
View File
@@ -34,7 +34,7 @@ export function NewChat({
const {data: chatStatus} = useChatActorStatusQuery()
const chatDisabled = !!chatStatus?.chatDisabled
const isGroupChatEnabled = ax.features.enabled(ax.features.GroupChatsEnable)
const isGroupChatEnabled = !ax.features.enabled(ax.features.GroupChatsDisable)
const {mutate: createChat} = useGetConvoForMembers({
onSuccess: data => {