diff --git a/src/Explorer/Tabs/DocumentsTabV2/DocumentsTabV2.tsx b/src/Explorer/Tabs/DocumentsTabV2/DocumentsTabV2.tsx index 5661024a7..f676aa983 100644 --- a/src/Explorer/Tabs/DocumentsTabV2/DocumentsTabV2.tsx +++ b/src/Explorer/Tabs/DocumentsTabV2/DocumentsTabV2.tsx @@ -496,10 +496,7 @@ const _loadNextPageInternal = ( iterator: QueryIterator, ): Promise => { TelemetryProcessor.traceStart(Action.ExecuteQuery); - return iterator.fetchNext().then((response) => { - TelemetryProcessor.traceSuccess(Action.ExecuteQuery, { dataExplorerArea: Constants.Areas.Tab }); - return response.resources; - }); + return iterator.fetchNext().then((response) => response.resources); }; // Export to expose to unit tests