From 800769bad59595c2091de9fa154f87acabdd9d21 Mon Sep 17 00:00:00 2001 From: karitham Date: Fri, 12 Sep 2025 20:28:47 +0000 Subject: [PATCH] invalidate lb cache daily --- src/App.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]}`; }, }, ); -- 2.51.2