diff --git a/src/App.tsx b/src/App.tsx index c5e174c..af7f524 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -23,7 +23,7 @@ export default () => { { storage: localStorage, sourceHash(source) { - return `artists-${JSON.stringify(source)}`; + return `artists-${JSON.stringify(source)}-${new Date().toISOString().split("T")[0]}`; }, }, ); @@ -33,7 +33,7 @@ export default () => { { storage: localStorage, sourceHash(source) { - return `groups-${JSON.stringify(source)}`; + return `groups-${JSON.stringify(source)}-${new Date().toISOString().split("T")[0]}`; }, }, );