diff --git a/lib/features/mailbox/presentation/mailbox_controller.dart b/lib/features/mailbox/presentation/mailbox_controller.dart index 6585af646..593948ba7 100644 --- a/lib/features/mailbox/presentation/mailbox_controller.dart +++ b/lib/features/mailbox/presentation/mailbox_controller.dart @@ -869,7 +869,10 @@ class MailboxController extends BaseMailboxController with MailboxActionHandlerM actionIcon: SvgPicture.asset(_imagePaths.icUndo)); } - _refreshMailboxChanges(currentMailboxState: success.currentMailboxState); + _refreshMailboxChanges( + currentMailboxState: success.currentMailboxState, + properties: MailboxConstants.propertiesDefault + ); } void _undoMovingMailbox(MoveMailboxRequest newMoveRequest) { diff --git a/lib/features/search/mailbox/presentation/search_mailbox_controller.dart b/lib/features/search/mailbox/presentation/search_mailbox_controller.dart index 11a0ef6ba..5e65df6e6 100644 --- a/lib/features/search/mailbox/presentation/search_mailbox_controller.dart +++ b/lib/features/search/mailbox/presentation/search_mailbox_controller.dart @@ -407,7 +407,10 @@ class SearchMailboxController extends BaseMailboxController with MailboxActionHa ); } - _refreshMailboxChanges(mailboxState: success.currentMailboxState); + _refreshMailboxChanges( + mailboxState: success.currentMailboxState, + properties: MailboxConstants.propertiesDefault + ); } void _undoMovingMailbox(MoveMailboxRequest newMoveRequest) {