mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-10-01 06:55:46 -04:00
fix issue #4: pronouns
This commit is contained in:
parent
a25ef9ed44
commit
6fb09032a3
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user