From b847de3ec42a8732aaa93a720979072b94d8a51c Mon Sep 17 00:00:00 2001 From: Andrew Bonventre Date: Tue, 3 Dec 2019 14:37:59 -0500 Subject: [PATCH] add state clearing instructions --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index e0b5696..8bff0c3 100644 --- a/README.md +++ b/README.md @@ -6,4 +6,10 @@ $ go run ./cmd/data > data.js $ npm run start ``` -State is saved locally via localstorage, making it safe to reload. +State is saved locally via `localStorage`, making it safe to reload. + +If you would like to clear your local state, open the console and type: + +```js +localStorage.clear(); +```