From 9614f191e58f16f50498d3dbb0424105f4df0fa9 Mon Sep 17 00:00:00 2001 From: Achintha Isuru Date: Fri, 23 Jan 2026 17:45:06 -0500 Subject: [PATCH] feat(client_home): remove 'reorder' widget from initial state and visibility --- .../home/lib/src/presentation/blocs/client_home_state.dart | 2 -- 1 file changed, 2 deletions(-) diff --git a/apps/mobile/packages/features/client/home/lib/src/presentation/blocs/client_home_state.dart b/apps/mobile/packages/features/client/home/lib/src/presentation/blocs/client_home_state.dart index edd73658..690b8c53 100644 --- a/apps/mobile/packages/features/client/home/lib/src/presentation/blocs/client_home_state.dart +++ b/apps/mobile/packages/features/client/home/lib/src/presentation/blocs/client_home_state.dart @@ -19,11 +19,9 @@ class ClientHomeState extends Equatable { this.status = ClientHomeStatus.initial, this.widgetOrder = const [ 'actions', - 'reorder', ], this.widgetVisibility = const { 'actions': true, - 'reorder': true, }, this.isEditMode = false, this.errorMessage,