From 5be6e5b5cd34792626cf3a48b5a96e7e6e598d93 Mon Sep 17 00:00:00 2001 From: DatDang Date: Fri, 30 Aug 2024 11:35:56 +0700 Subject: [PATCH] TF-3082 Fix identity dialog auto scroll to bottom after reload --- .../presentation/identity_creator_controller.dart | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/features/identity_creator/presentation/identity_creator_controller.dart b/lib/features/identity_creator/presentation/identity_creator_controller.dart index 216c1097e..3f59f806d 100644 --- a/lib/features/identity_creator/presentation/identity_creator_controller.dart +++ b/lib/features/identity_creator/presentation/identity_creator_controller.dart @@ -171,7 +171,9 @@ class IdentityCreatorController extends BaseController with DragDropFileMixin im session = arguments!.session; identity = arguments!.identity; actionType.value = arguments!.actionType; - if (actionType.value == IdentityActionType.create) { + if (actionType.value == IdentityActionType.create + && arguments!.publicAssetsInIdentityArguments == null + ) { isLoadSignatureCompleted = true; } _checkDefaultIdentityIsSupported();