fix issue #4: pronouns

This commit is contained in:
Christien Rioux 2023-09-30 21:15:26 -04:00
parent a25ef9ed44
commit 6fb09032a3

View File

@ -49,7 +49,8 @@ class NewAccountPageState extends ConsumerState<NewAccountPage> {
final name = _formKey.currentState!.fields[formFieldName]!.value as String;
final pronouns =
_formKey.currentState!.fields[formFieldPronouns]!.value as String;
_formKey.currentState!.fields[formFieldPronouns]!.value as String? ??
'';
final imws = await IdentityMasterWithSecrets.create();
try {