From ce5ef7c7cb15bf3406d440ccbd0a2d9d9b446ad1 Mon Sep 17 00:00:00 2001 From: Vitaly Turovsky Date: Sun, 6 Apr 2025 11:09:17 +0300 Subject: [PATCH] remove not neede functionality --- src/utils.ts | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/utils.ts b/src/utils.ts index 17f5c2ec..98a4472f 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -65,16 +65,6 @@ export const pointerLock = { } } -export const logAction = (category: string, action: string, value?: string, label?: string) => { - if (!options.externalLoggingService) return - window.loggingServiceChannel?.({ - category, - action, - value, - label - }) -} - export const isInRealGameSession = () => { return isGameActive(true) && (!packetsReplayState.isOpen || packetsReplayState.isMinimized) && !gameAdditionalState.viewerConnection }