Hide spinner until we enable indexing on mobile

This commit is contained in:
vishnukvmd 2023-12-18 13:06:23 +05:30
parent 3975c1cfed
commit a7526908ba

View file

@ -191,10 +191,12 @@ class _MagicSearchIndexStatsWidgetState
children: [
MenuSectionTitle(title: S.of(context).status),
Expanded(child: Container()),
_status!.pendingItems > 0
? EnteLoadingWidget(
color: getEnteColorScheme(context).fillMuted,
)
kDebugMode
? _status!.pendingItems > 0
? EnteLoadingWidget(
color: getEnteColorScheme(context).fillMuted,
)
: const SizedBox.shrink()
: const SizedBox.shrink(),
],
),