diff --git a/src/storage/impl/extension.js b/src/storage/impl/extension.js index 204f59dd..d591a91a 100644 --- a/src/storage/impl/extension.js +++ b/src/storage/impl/extension.js @@ -56,7 +56,7 @@ export const remove = (key) => { }; export const clear = async () => { - keys().filter((x) => x.toLowerCase().startsWith('goosemod')).forEach((y) => remove(x)); // Extension + keys().filter((x) => x.toLowerCase().startsWith('goosemod')).forEach((y) => remove(y)); // Extension for (const system of paritySystems) await system.clear(); };