Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -328,15 +328,17 @@ export default function CommunityEditorDetails({ communityId } = {}) {
return (
<>
<CommunityMembersEditor
description="The admins will be able to edit the space settings and moderate
proposals. You must add one address per line."
description="Admins can edit community settings and moderate proposals.
We recommend at least two admin for each community, but it is not a requirement.
Please add one address per line."
type="admin"
communityId={communityId}
/>
<CommunityMembersEditor
title="Authors"
addrType="Author"
description="Authors can post proposals regardless of their voting power."
description="Authors can create and publish proposals, selecting from voting strategies set by an Admin.
Admins are automatically added as Authors."
communityId={communityId}
/>
</>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,9 @@ export default function StepTwo({
</Popover>
</>
}
description="The admins will be able to edit the space settings and moderate proposals. You must add one address per line."
description="Admins can edit community settings and moderate proposals.
We recommend at least two admin for each community, but it is not a requirement.
Please add one address per line."
addrList={listAddrAdmins}
onAddressChange={onAdminAddressChange}
onDeleteAddress={onAdminAddressDelete}
Expand All @@ -121,7 +123,8 @@ export default function StepTwo({
</Popover>
</>
}
description="Authors can post proposals regardless of their voting power."
description="Authors can create and publish proposals, selecting from voting strategies set by an Admin.
Admins are automatically added as Authors."
addrList={listAddrAuthors}
onAddressChange={onAuthorAddressChange}
onDeleteAddress={onAuthorAddressDelete}
Expand Down