fix(ckchat): 修正获取选中客服信息的方法名拼写错误

This commit is contained in:
超级老白兔
2025-08-30 17:07:08 +08:00
parent 0975995486
commit b780a4db58

View File

@@ -50,7 +50,7 @@ export const useCkChatStore = createPersistStore<CkChatState>(
await weChatGroupService.createManyWithServerId(data);
},
//获取选中的客服信息
getgetKfSelectedUser: () => {
getKfSelectedUser: () => {
const state = useCkChatStore.getState();
return state.kfUserList.find(item => item.id === state.kfSelected);
},