Sfoglia il codice sorgente

feat: prevent click same

GyDi 3 anni fa
parent
commit
6b3e7cbc08
1 ha cambiato i file con 1 aggiunte e 0 eliminazioni
  1. 1 0
      src/pages/profile.tsx

+ 1 - 0
src/pages/profile.tsx

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