yangjie #22

Merged
yangqiang merged 99 commits from yangjie into master 2024-10-22 16:11:46 +08:00
1 changed files with 3 additions and 1 deletions
Showing only changes of commit 6b4ee115c4 - Show all commits

View File

@ -400,7 +400,9 @@ const Meeting: React.FC = () => {
}
}
time = setInterval(() => {
setCurrentSeconds(currentSeconds++)
setCurrentSeconds(currentSeconds => {
return currentSeconds += 1
})
}, 1000)
// 首次加载图标更新
const firstFooterList = [...footerList]