Created
August 9, 2026 07:30
-
-
Save alikarimii/3eebca4f48efbe0fe021e99b6150aa80 to your computer and use it in GitHub Desktop.
Bypass git-for-designers Steps
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const K = 'git-course-fa-v3'; | |
| const d = JSON.parse(localStorage.getItem(K) || '{}'); | |
| d.done = {}; | |
| for (let i = 1; i <= 30; i++) d.done[i] = { perfect: false, score: 0 }; | |
| localStorage.setItem(K, JSON.stringify(d)); | |
| location.reload(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment