diff --git a/ts/components/conversation/conversation-details/GroupLinkManagement.tsx b/ts/components/conversation/conversation-details/GroupLinkManagement.tsx index bb2d07f23..44d9620ce 100644 --- a/ts/components/conversation/conversation-details/GroupLinkManagement.tsx +++ b/ts/components/conversation/conversation-details/GroupLinkManagement.tsx @@ -63,11 +63,11 @@ export const GroupLinkManagement: React.ComponentType = ({ options={[ { text: i18n('on'), - value: i18n('on'), + value: 'true', }, { text: i18n('off'), - value: i18n('off'), + value: 'false', }, ]} value={String(Boolean(hasGroupLink))} @@ -121,11 +121,11 @@ export const GroupLinkManagement: React.ComponentType = ({ options={[ { text: i18n('on'), - value: i18n('on'), + value: 'true', }, { text: i18n('off'), - value: i18n('off'), + value: 'false', }, ]} value={String(membersNeedAdminApproval)}