Chore/Add telemetry for productId (#5188)

add telemetry for productId
This commit is contained in:
Henry Heng
2025-09-10 15:48:59 +01:00
committed by GitHub
parent 099cf481b4
commit 32bf030924
7 changed files with 49 additions and 24 deletions
@@ -185,7 +185,6 @@ const ViewMessagesDialog = ({ show, dialogProps, onCancel }) => {
const closeSnackbar = (...args) => dispatch(closeSnackbarAction(...args))
const [chatlogs, setChatLogs] = useState([])
const [allChatlogs, setAllChatLogs] = useState([])
const [chatMessages, setChatMessages] = useState([])
const [stats, setStats] = useState({})
const [selectedMessageIndex, setSelectedMessageIndex] = useState(0)
@@ -758,7 +757,6 @@ const ViewMessagesDialog = ({ show, dialogProps, onCancel }) => {
if (getChatmessageApi.data) {
getStoragePathFromServer.request()
setAllChatLogs(getChatmessageApi.data)
const chatPK = processChatLogs(getChatmessageApi.data)
setSelectedMessageIndex(0)
if (chatPK) {
@@ -794,7 +792,6 @@ const ViewMessagesDialog = ({ show, dialogProps, onCancel }) => {
return () => {
setChatLogs([])
setAllChatLogs([])
setChatMessages([])
setChatTypeFilter(['INTERNAL', 'EXTERNAL'])
setFeedbackTypeFilter([])