From 07ab3314f3957cf58de21f86cf520e415f0e1a94 Mon Sep 17 00:00:00 2001 From: Kartik Sharma Date: Mon, 8 Dec 2025 10:31:54 +0530 Subject: [PATCH] Removing Console.log at ViewBranchdetails. --- .../ServiceProject/ServiceProjectBranch/ViewBranchDetails.jsx | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/components/ServiceProject/ServiceProjectBranch/ViewBranchDetails.jsx b/src/components/ServiceProject/ServiceProjectBranch/ViewBranchDetails.jsx index 169cb7a2..af75cab2 100644 --- a/src/components/ServiceProject/ServiceProjectBranch/ViewBranchDetails.jsx +++ b/src/components/ServiceProject/ServiceProjectBranch/ViewBranchDetails.jsx @@ -6,8 +6,6 @@ import { formatUTCToLocalTime } from "../../../utils/dateUtils"; const ViewBranchDetails = ({ BranchToEdit }) => { const { data, isLoading, isError, error: requestError } = useBranchDetails(BranchToEdit); - console.log("branch details:", data); - if (isLoading) return

Loading...

; if (isError) return

Error: {requestError?.message}

;