feat: prevent click same

This commit is contained in:
GyDi 2021-12-31 18:21:35 +08:00
parent db4993ae9b
commit 6b3e7cbc08

View File

@ -77,6 +77,7 @@ const ProfilePage = () => {
const lockRef = useRef(false); const lockRef = useRef(false);
const onProfileChange = (index: number) => { const onProfileChange = (index: number) => {
if (index === profiles.current || lockRef.current) return;
if (lockRef.current) return; if (lockRef.current) return;
lockRef.current = true; lockRef.current = true;
putProfiles(index) putProfiles(index)