diff --git a/src/components/UserProperty/Pronoun.js b/src/components/UserProperty/Pronoun.js
index 2b39681..ba7ec82 100644
--- a/src/components/UserProperty/Pronoun.js
+++ b/src/components/UserProperty/Pronoun.js
@@ -3,6 +3,7 @@ import PropTypes from 'prop-types';
import Input from '@codeday/topo/Atom/Input/Text';
import FormControl, { Label } from '@codeday/topo/Atom/Form';
import Text, { Link } from '@codeday/topo/Atom/Text';
+import Box from '@codeday/topo/Atom/Box'
import Radio, { Group, Stack } from '@codeday/topo/Atom/Input/Radio';
const CUSTOM = 'custom';
@@ -23,26 +24,28 @@ const Pronoun = ({ user, onChange }) => {
const defaultRadios = Object.keys(defaultPronouns)
.map((k) => {defaultPronouns[k]});
- const customRadio = (
-
- {
- custom || selection === CUSTOM
- ? (
- {
- setSelection(CUSTOM);
- setCustom(e.target.value);
- onChange({ pronoun: e.target.value });
- }}
- />
- ) : (
- (other)
- )
- }
-
- );
-
+ const customRadio = (
+
+
+ {" "}
+
+ {
+ custom || selection === CUSTOM ? (
+ {
+ setCustom(e.target.value);
+ onChange({ pronoun: e.target.value });
+ setSelection(CUSTOM);
+ }}
+ />
+ ) : (
+ (other)
+ )
+ }
+
+ );
return (