Browse Source

enable search for all users

Neeraj Gupta 2 years ago
parent
commit
06311ec646
1 changed files with 2 additions and 4 deletions
  1. 2 4
      lib/ui/status_bar_widget.dart

+ 2 - 4
lib/ui/status_bar_widget.dart

@@ -84,14 +84,12 @@ class _StatusBarWidgetState extends State<StatusBarWidget> {
             Positioned(
             Positioned(
               right: 0,
               right: 0,
               top: 0,
               top: 0,
-              child: FeatureFlagService.instance.enableSearch()
-                  ? Container(
+              child: Container(
                       color:
                       color:
                           Theme.of(context).colorScheme.defaultBackgroundColor,
                           Theme.of(context).colorScheme.defaultBackgroundColor,
                       height: kContainerHeight,
                       height: kContainerHeight,
                       child: const SearchIconWidget(),
                       child: const SearchIconWidget(),
-                    )
-                  : const SizedBox(height: 36, width: 48),
+                    ),
             ),
             ),
           ],
           ],
         ),
         ),