0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-27 20:12:40 +00:00

Remove debugging line

This commit is contained in:
G.Ambatte
2024-09-07 14:01:25 +12:00
parent 9679e5b130
commit cd30679aac

View File

@@ -114,7 +114,6 @@ export function versionHistoryGarbageCollection(){
const collectAt = new Date(JSON.parse(localStorage.getItem(key)).expireAt);
collectAt.setMinutes(collectAt.getMinutes() + GARBAGE_COLLECT_DELAY);
if(new Date() > collectAt){
console.log('GARBAGE COLLECTION:', key);
localStorage.removeItem(key);
}
});