diff --git a/apps/authentiwatch/interface.html b/apps/authentiwatch/interface.html
index 17b7648ea..6b39c148b 100644
--- a/apps/authentiwatch/interface.html
+++ b/apps/authentiwatch/interface.html
@@ -322,8 +322,8 @@ function loadTokens() {
Puck.eval(`require('Storage').read(${JSON.stringify('authentiwatch.json')})`,data=>{
Util.hideModal();
try {
- let saved = JSON.parse(data);
- tokens = saved.data;
+ let load = JSON.parse(data);
+ tokens = load.data;
updateTokens();
} catch {
tokens = [];