Skip to content

Commit

Permalink
remove error line
Browse files Browse the repository at this point in the history
  • Loading branch information
b9348 committed Feb 6, 2025
1 parent ad92a6e commit e899d01
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pages/login/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function Login() {
alert('保存成功,可以查询')
}

const onFinishFailed = (errorInfo) => {
const onFinishFailed = () => {
// console.log('Failed:', errorInfo)
}

Expand Down Expand Up @@ -112,7 +112,7 @@ function Login() {
// 使用示例
fetchAllSettled(uniqueRoleIds).then(results => {
const successes = results.filter(r => !r.error);
const failures = results.filter(r => r.error);
// const failures = results.filter(r => r.error);
const newArray = [];

// 遍历原始数组
Expand Down

0 comments on commit e899d01

Please sign in to comment.