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];