HH-547: allow cross-origin widget requests (#126)

* HH-547: allow cross-origin widget requests

* fix(HH-547): align production preflight with wildcard CORS

---------

Co-authored-by: Rogee <rogee@ipao.vip>
This commit is contained in:
Rogee
2026-08-23 20:11:04 +08:00
committed by GitHub
co-authored by rogee
parent a2e4f9a1e8
commit eb83d241fe
13 changed files with 79 additions and 50 deletions
@@ -186,7 +186,8 @@ export const actions = {
commit('toggleAgentTypingStatus', data);
},
toggleUserTyping: async (_, data) => {
toggleUserTyping: async ({ getters }, data) => {
if (!getters.getConversationSize) return;
try {
await toggleTyping(data);
} catch (error) {