This commit is contained in:
Manav Rathi
2024-06-19 14:38:54 +05:30
parent 306430d67d
commit 0f076e19be

View File

@@ -161,7 +161,10 @@ const Container: React.FC<React.PropsWithChildren> = ({ children }) => {
const handleClick = () => {
setTapCount(tapCount + 1);
if (tapCount + 1 == 7) setShowDevSettings(true);
if (tapCount + 1 == 7) {
setTapCount(0);
setShowDevSettings(true);
}
};
return (