mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-12-15 16:29:10 -05:00
fix issue #4: pronouns
This commit is contained in:
parent
a25ef9ed44
commit
6fb09032a3
1 changed files with 2 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue