mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-12-25 23:59:32 -05: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 name = _formKey.currentState!.fields[formFieldName]!.value as String;
|
||||||
final pronouns =
|
final pronouns =
|
||||||
_formKey.currentState!.fields[formFieldPronouns]!.value as String;
|
_formKey.currentState!.fields[formFieldPronouns]!.value as String? ??
|
||||||
|
'';
|
||||||
|
|
||||||
final imws = await IdentityMasterWithSecrets.create();
|
final imws = await IdentityMasterWithSecrets.create();
|
||||||
try {
|
try {
|
||||||
|
Loading…
Reference in New Issue
Block a user