export function getDateOneYearInTheFuture() { const now = new Date(Date.now()); now.setFullYear( now.getFullYear() + 1, now.getUTCMonth(), now.getUTCDate(), ); return now; }