chore: remove nextjs patch

This commit is contained in:
iCrawl
2023-11-11 19:19:14 +01:00
parent 5a4c9755c3
commit 2a25eeaf13
9 changed files with 955 additions and 822 deletions

View File

@@ -5,11 +5,15 @@ import { addPackageToModel } from './addPackageToModel';
import { OVERLOAD_SEPARATOR, PACKAGES } from './constants';
import { findMember, findMemberByKey } from './model';
export const fetchMember = cache(async (packageName: string, branchName: string, item: string) => {
export const fetchMember = cache(async (packageName: string, branchName: string, item?: string) => {
if (!PACKAGES.includes(packageName)) {
return null;
}
if (!item) {
return null;
}
const model = new ApiModel();
if (branchName === 'main') {