From 2f01c575dbc5edc09d7aad0388a7344347baa264 Mon Sep 17 00:00:00 2001 From: Matt DiMeglio Date: Tue, 12 Aug 2025 15:01:49 -0400 Subject: [PATCH] Fix and Delete Log --- app/incidents.jsx | 2 +- hooks/useCallFeed/useCallFeed.jsx | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/app/incidents.jsx b/app/incidents.jsx index 4c773dc..ac6737c 100644 --- a/app/incidents.jsx +++ b/app/incidents.jsx @@ -121,7 +121,7 @@ export default function Incidents() { router.push({ pathname: '/call', params: { - callDetails: btoa(JSON.stringify(call)) + callDetails: btoa(JSON.stringify(callItem)) } }) }} diff --git a/hooks/useCallFeed/useCallFeed.jsx b/hooks/useCallFeed/useCallFeed.jsx index 3ac5e48..9437be1 100644 --- a/hooks/useCallFeed/useCallFeed.jsx +++ b/hooks/useCallFeed/useCallFeed.jsx @@ -98,7 +98,6 @@ const getIncidents = async (departments, incidentStatus) => { status: incidentStatus }), }); - console.log('response: ', response); if (!response.ok) { throw new Error(`HTTP error! status: ${response.status}`); }