From 528d7d88539ef397bbeb06cfaa0b28567687569e Mon Sep 17 00:00:00 2001 From: Kunal Sharma Date: Thu, 4 Jan 2024 15:06:26 +0530 Subject: [PATCH] TP-52700|Kunal| red bar removal (#769) * TP-52700|Kunal| red bar removal * TP-52700|Kunal| remove red bar * TP-52700|Kunal| remove red bar --- .../components/CommunicationHistory/CallInteractions.tsx | 2 +- src/pages/CaseDetails/components/Interactions/index.tsx | 2 +- src/reducers/notificationsSlice.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/pages/CaseDetails/components/CommunicationHistory/CallInteractions.tsx b/src/pages/CaseDetails/components/CommunicationHistory/CallInteractions.tsx index e13142fa..89a72f89 100644 --- a/src/pages/CaseDetails/components/CommunicationHistory/CallInteractions.tsx +++ b/src/pages/CaseDetails/components/CommunicationHistory/CallInteractions.tsx @@ -373,7 +373,7 @@ const CallInteractions = () => { getRowId={getRowId} getAgRowStyle={getAgRowStyle} style={{ - height: `${window?.innerHeight - (isPreviousLoanInteraction ? 488 : 405)}` + height: `${window?.innerHeight - (isPreviousLoanInteraction ? 452 : 369)}` }} domLayout="autoHeight" sizeColumnsToFit diff --git a/src/pages/CaseDetails/components/Interactions/index.tsx b/src/pages/CaseDetails/components/Interactions/index.tsx index 6134dd24..0607c324 100644 --- a/src/pages/CaseDetails/components/Interactions/index.tsx +++ b/src/pages/CaseDetails/components/Interactions/index.tsx @@ -144,7 +144,7 @@ const Interactions = () => { wrapText: true }} style={{ - height: `${window?.innerHeight - 405}` + height: `${window?.innerHeight - 369}` }} className="teamLeadTable" rowData={waInteractionsData?.content} diff --git a/src/reducers/notificationsSlice.ts b/src/reducers/notificationsSlice.ts index 5d96f7dd..a1d1eebb 100644 --- a/src/reducers/notificationsSlice.ts +++ b/src/reducers/notificationsSlice.ts @@ -35,7 +35,7 @@ const notificationSlice = createSlice({ showNotificationStickyBanner(state, action) { const { notificationTemplates, notifications } = action.payload; const shouldShowStickyBanner = Boolean(notifications?.length); - state.shouldShowStickyBanner = shouldShowStickyBanner; + // state.shouldShowStickyBanner = shouldShowStickyBanner; }, setPaymentDoneModalData(state, action) { state.paymentDoneModalData = [...state.paymentDoneModalData, action.payload];