Reenable github api caching

This commit is contained in:
Sam Becker 2025-02-26 23:10:58 -06:00
parent b5c256eee6
commit 1aadcfa193

View File

@ -2,7 +2,6 @@ import {
TEMPLATE_REPO_OWNER,
TEMPLATE_REPO_NAME,
TEMPLATE_REPO_BRANCH,
IS_DEVELOPMENT,
} from '@/app/config';
const DEFAULT_BRANCH = 'main';
@ -17,7 +16,7 @@ interface RepoParams {
const fetchGitHub = async (
url: string,
cacheRequest = IS_DEVELOPMENT,
cacheRequest = true,
) => {
const data = await fetch(
url,