mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2025-08-08 14:12:15 -04:00
checkpoint
This commit is contained in:
parent
3f8b4d2a41
commit
17211f3515
22 changed files with 701 additions and 353 deletions
|
@ -116,7 +116,14 @@ class _EditAccountPageState extends State<EditAccountPage> {
|
|||
});
|
||||
try {
|
||||
// Look up account cubit for this specific account
|
||||
final accountRecordCubit = context.read<AccountRecordCubit>();
|
||||
final perAccountCollectionBlocMapCubit =
|
||||
context.read<PerAccountCollectionBlocMapCubit>();
|
||||
final accountRecordCubit = await perAccountCollectionBlocMapCubit
|
||||
.operate(widget.superIdentityRecordKey,
|
||||
closure: (c) async => c.accountRecordCubit);
|
||||
if (accountRecordCubit == null) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Update account profile DHT record
|
||||
// This triggers ConversationCubits to update
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue