add todo reminder comment

This commit is contained in:
Nathaniel Tampus
2023-04-02 18:42:15 +08:00
parent 577cba6ff4
commit 06b772be79

View File

@@ -56,6 +56,7 @@ export const getArchivedGame = async ({ id, userid }: { id?: number; userid?: nu
url += `userid=${userid}`; url += `userid=${userid}`;
} }
try { try {
// TODO: handle caching more efficiently
const res = await fetch(url, { const res = await fetch(url, {
next: { revalidate: 20 } next: { revalidate: 20 }
}); });