From ffd5d75304d74bd05535b84e1c7c4becd079aa3c Mon Sep 17 00:00:00 2001 From: Laurent Nguyen Date: Thu, 10 Apr 2025 16:57:30 +0200 Subject: [PATCH] Remove tracing call for documents tab filtering --- src/Explorer/Tabs/DocumentsTabV2/DocumentsTabV2.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Explorer/Tabs/DocumentsTabV2/DocumentsTabV2.tsx b/src/Explorer/Tabs/DocumentsTabV2/DocumentsTabV2.tsx index f676aa983..cef323b0e 100644 --- a/src/Explorer/Tabs/DocumentsTabV2/DocumentsTabV2.tsx +++ b/src/Explorer/Tabs/DocumentsTabV2/DocumentsTabV2.tsx @@ -495,7 +495,6 @@ const getNewDocumentButtonState = (editorState: ViewModels.DocumentExplorerState const _loadNextPageInternal = ( iterator: QueryIterator, ): Promise => { - TelemetryProcessor.traceStart(Action.ExecuteQuery); return iterator.fetchNext().then((response) => response.resources); };