[Storage > Ext] Fix using wrong var for bundling error

pull/55/head
Oj18 3 years ago
parent 481199d2e0
commit 1a6b1b8b2c

@ -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();
};

Loading…
Cancel
Save