@@ -712,55 +712,84 @@ const ProfilePage = ({
712712 hasPasswordSet = { initialValues . has_password_set }
713713 formik = { formik }
714714 passwordPolicy = { passwordPolicy } />
715- < Grid item xs = { 12 } >
716- < FormControlLabel
717- control = { < Checkbox name = "public_profile_show_photo"
718- id = "public_profile_show_photo"
719- checked = { formik . values . public_profile_show_photo }
720- onChange = { formik . handleChange }
721- color = "primary" /> }
722- label = "Show Picture on Public Profile?"
723- />
724- < FormControlLabel
725- control = { < Checkbox name = "public_profile_show_fullname"
726- id = "public_profile_show_fullname"
727- checked = { formik . values . public_profile_show_fullname }
728- onChange = { formik . handleChange }
729- color = "primary" /> }
730- label = "Show Full name on Public Profile?"
731- />
732- < FormControlLabel
733- control = { < Checkbox name = "public_profile_show_email"
734- id = "public_profile_show_email"
735- checked = { formik . values . public_profile_show_email }
736- onChange = { formik . handleChange }
737- color = "primary" /> }
738- label = "Show Email on Public Profile?"
739- />
740- < FormControlLabel
741- control = { < Checkbox name = "public_profile_show_bio"
742- id = "public_profile_show_bio"
743- checked = { formik . values . public_profile_show_bio }
744- onChange = { formik . handleChange }
745- color = "primary" /> }
746- label = "Show Bio on Public Profile?"
747- />
748- < FormControlLabel
749- control = { < Checkbox name = "public_profile_show_social_media_info"
750- id = "public_profile_show_social_media_info"
751- checked = { formik . values . public_profile_show_social_media_info }
752- onChange = { formik . handleChange }
753- color = "primary" /> }
754- label = "Show Social Media Info on Public Profile?"
755- />
756- < FormControlLabel
757- control = { < Checkbox name = "public_profile_allow_chat_with_me"
758- id = "public_profile_allow_chat_with_me"
759- checked = { formik . values . public_profile_allow_chat_with_me }
760- onChange = { formik . handleChange }
761- color = "primary" /> }
762- label = "Allow people to chat with me?"
763- />
715+
716+ < Grid item spacing = { 2 } container direction = "row" >
717+ < Grid item xs = { 6 } >
718+ < FormControlLabel
719+ control = { < Checkbox name = "public_profile_show_photo"
720+ id = "public_profile_show_photo"
721+ checked = { formik . values . public_profile_show_photo }
722+ onChange = { formik . handleChange }
723+ color = "primary" /> }
724+ label = "Show Picture on Public Profile?"
725+ />
726+ </ Grid >
727+ < Grid item xs = { 6 } >
728+ < FormControlLabel
729+ control = { < Checkbox name = "public_profile_show_fullname"
730+ id = "public_profile_show_fullname"
731+ checked = { formik . values . public_profile_show_fullname }
732+ onChange = { formik . handleChange }
733+ color = "primary" /> }
734+ label = "Show Full name on Public Profile?"
735+ />
736+ </ Grid >
737+ </ Grid >
738+ < Grid item spacing = { 2 } container direction = "row" >
739+ < Grid item xs = { 6 } >
740+ < FormControlLabel
741+ control = { < Checkbox name = "public_profile_show_email"
742+ id = "public_profile_show_email"
743+ checked = { formik . values . public_profile_show_email }
744+ onChange = { formik . handleChange }
745+ color = "primary" /> }
746+ label = "Show Email on Public Profile?"
747+ />
748+ </ Grid >
749+ < Grid item xs = { 6 } >
750+ < FormControlLabel
751+ control = { < Checkbox name = "public_profile_show_bio"
752+ id = "public_profile_show_bio"
753+ checked = { formik . values . public_profile_show_bio }
754+ onChange = { formik . handleChange }
755+ color = "primary" /> }
756+ label = "Show Bio on Public Profile?"
757+ />
758+ </ Grid >
759+ </ Grid >
760+ < Grid item spacing = { 2 } container direction = "row" >
761+ < Grid item xs = { 6 } >
762+ < FormControlLabel
763+ control = { < Checkbox name = "public_profile_show_social_media_info"
764+ id = "public_profile_show_social_media_info"
765+ checked = { formik . values . public_profile_show_social_media_info }
766+ onChange = { formik . handleChange }
767+ color = "primary" /> }
768+ label = "Show Social Media Info on Public Profile?"
769+ />
770+ </ Grid >
771+ < Grid item xs = { 6 } >
772+ < FormControlLabel
773+ control = { < Checkbox name = "public_profile_show_telephone_number"
774+ id = "public_profile_show_telephone_number"
775+ checked = { formik . values . public_profile_show_telephone_number }
776+ onChange = { formik . handleChange }
777+ color = "primary" /> }
778+ label = "Show Telephone Number on Public Profile?"
779+ />
780+ </ Grid >
781+ </ Grid >
782+ < Grid item spacing = { 2 } container direction = "row" >
783+ < Grid item xs = { 6 } >
784+ < FormControlLabel
785+ control = { < Checkbox name = "public_profile_allow_chat_with_me"
786+ id = "public_profile_allow_chat_with_me"
787+ checked = { formik . values . public_profile_allow_chat_with_me }
788+ onChange = { formik . handleChange }
789+ color = "primary" /> }
790+ label = "Allow People Chat With Me?"
791+ />
792+ </ Grid >
764793 </ Grid >
765794 < Grid item container alignItems = "center" justifyContent = "center" >
766795 < Button
0 commit comments