fix: Login Page Viewed 事件仅在模态框首次打开时触发 1 次

- 验证码倒计时期间不再重复触发
     - 不影响其他事件追踪功能\
This commit is contained in:
zdl
2025-11-26 11:15:04 +08:00
parent 5f959fb44f
commit d8a4c20565

View File

@@ -476,7 +476,8 @@ export default function AuthFormContent() {
return () => {
isMountedRef.current = false;
};
}, [authEvents]);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, []); // 仅在挂载时执行一次,避免 countdown 倒计时导致重复触发
return (
<>