Skip to content

Commit 1367f09

Browse files
authored
Bugfix/Fix export lead email (#2717)
fix export lead email
1 parent 109b036 commit 1367f09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/ui/src/ui-component/dialog/ViewMessagesDialog.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ const ViewMessagesDialog = ({ show, dialogProps, onCancel }) => {
196196
source: chatmsg.chatType === 'INTERNAL' ? 'UI' : 'API/Embed',
197197
sessionId: chatmsg.sessionId ?? null,
198198
memoryType: chatmsg.memoryType ?? null,
199-
email: leadEmail ?? null,
199+
email: chatmsg.leadEmail ?? null,
200200
messages: [msg]
201201
}
202202
} else if (Object.prototype.hasOwnProperty.call(obj, chatPK)) {

0 commit comments

Comments
 (0)