diff --git a/src/app/[...rest]/page.tsx b/src/app/[...rest]/page.tsx index d7417b3..4081c4d 100644 --- a/src/app/[...rest]/page.tsx +++ b/src/app/[...rest]/page.tsx @@ -103,12 +103,6 @@ export default async function RestPage({ params: { rest } }: Props) { return values as [{ files: z.infer[]; nextPageToken?: string }, string]; } }); - console.log( - rest.map((item, index, array) => ({ - label: decodeURIComponent(item), - href: index === array.length - 1 ? undefined : `${item}`, - })), - ); return (
diff --git a/src/app/actions.ts b/src/app/actions.ts index f5081b7..6ea365f 100644 --- a/src/app/actions.ts +++ b/src/app/actions.ts @@ -639,7 +639,6 @@ export async function GetReadme(encryptedId: string | undefined): Promise