From f19f4889dd25a424a83e0fdb7ea02846a99d4b43 Mon Sep 17 00:00:00 2001 From: Tomasz Misiukiewicz Date: Tue, 14 Jul 2026 10:59:58 +0200 Subject: [PATCH] Remove noisy hmmm log for missing personal details in workspace member lists --- src/pages/workspace/WorkspaceMembersPage.tsx | 2 -- src/pages/workspace/workflows/WorkspaceWorkflowsPayerPage.tsx | 2 -- 2 files changed, 4 deletions(-) diff --git a/src/pages/workspace/WorkspaceMembersPage.tsx b/src/pages/workspace/WorkspaceMembersPage.tsx index 4baf8be44f16..329459f3d140 100644 --- a/src/pages/workspace/WorkspaceMembersPage.tsx +++ b/src/pages/workspace/WorkspaceMembersPage.tsx @@ -44,7 +44,6 @@ import { import {removeApprovalWorkflow as removeApprovalWorkflowAction, updateApprovalWorkflow} from '@libs/actions/Workflow'; import {getLatestErrorMessageField} from '@libs/ErrorUtils'; import {getConnectedHRProvider, showMergeHRManualSyncLimitModalIfReached} from '@libs/HRUtils'; -import Log from '@libs/Log'; import createDynamicRoute from '@libs/Navigation/helpers/dynamicRoutesUtils/createDynamicRoute'; import Navigation from '@libs/Navigation/Navigation'; import type {PlatformStackScreenProps} from '@libs/Navigation/PlatformStackNavigation/types'; @@ -338,7 +337,6 @@ function WorkspaceMembersPage({personalDetails, route, policy}: WorkspaceMembers const details = personalDetails?.[accountID]; if (!details) { - Log.hmmm(`[WorkspaceMembersPage] no personal details found for policy member with accountID: ${accountID}`); continue; } diff --git a/src/pages/workspace/workflows/WorkspaceWorkflowsPayerPage.tsx b/src/pages/workspace/workflows/WorkspaceWorkflowsPayerPage.tsx index 9537bba33f8e..21d73fd899d6 100644 --- a/src/pages/workspace/workflows/WorkspaceWorkflowsPayerPage.tsx +++ b/src/pages/workspace/workflows/WorkspaceWorkflowsPayerPage.tsx @@ -22,7 +22,6 @@ import usePressLoading from '@hooks/usePressLoading'; import useThemeStyles from '@hooks/useThemeStyles'; import {isBankAccountPartiallySetup} from '@libs/BankAccountUtils'; -import Log from '@libs/Log'; import Navigation from '@libs/Navigation/Navigation'; import type {PlatformStackScreenProps} from '@libs/Navigation/PlatformStackNavigation/types'; import {getSearchValueForPhoneOrEmail} from '@libs/OptionsListUtils'; @@ -116,7 +115,6 @@ function WorkspaceWorkflowsPayerPage({route, policy, personalDetails, isLoadingR const adminAccountID = policyMemberEmailsToAccountIDs?.[email] ?? ''; const details = personalDetails?.[adminAccountID]; if (!details) { - Log.hmmm(`[WorkspaceMembersPage] no personal details found for policy member with accountID: ${adminAccountID}`); continue; } const isOwner = policy?.owner === details?.login;