in src/utils/localStorageWithExpiry.ts [11:28]
export function getLocalStorageWithExpiry(key: string) {
const itemStr = localStorage.getItem(key);
if (!itemStr) {
return null;
}
const item = JSON.parse(itemStr);
const now = new Date();
if (now.getTime() > item.expiry) {
localStorage.removeItem(key);
return null;
}
return item.value;
}