swaroopg92 / penpa-edit

Web application to create and solve Sudokus and Puzzles
https://swaroopg92.github.io/penpa-edit/
Other
104 stars 42 forks source link

Expand try/catch block for localStorage test to fix app for users blo… #163

Closed davmillar closed 8 months ago

davmillar commented 8 months ago

…cking it.

swaroopg92 commented 8 months ago

@davmillar Thank you for the PR. FYI: 1) window.localStorage.getItem('test') returns a string value. It was always setting to False. I changed the comparison to string as window.localStorage.getItem('test') === "123" 2) I added removeItem segment to remove test variable after the test is completed. Merged.