去除轮询接口错误信息.

This commit is contained in:
lijiahang
2024-12-03 11:28:58 +08:00
parent 9bfd5888bf
commit eb77f33574
4 changed files with 10 additions and 1 deletions

View File

@@ -43,7 +43,10 @@ export function getSystemMessageCount(queryUnread: boolean) {
* 查询是否有未读消息
*/
export function checkHasUnreadMessage() {
return axios.get<boolean>('/infra/system-message/has-unread');
return axios.get<boolean>('/infra/system-message/has-unread', {
promptBizErrorMessage: false,
promptRequestErrorMessage: false,
});
}
/**