diff --git a/src/app/api/user/get-token/route.ts b/src/app/api/user/get-token/route.ts index 47b1f74e..f6cb81fd 100644 --- a/src/app/api/user/get-token/route.ts +++ b/src/app/api/user/get-token/route.ts @@ -8,6 +8,5 @@ export async function GET() { const data = JSON.parse( await unsealData(c?.value as string, {password: ((await getConfig()).server.password)}) ) - return NextResponse.json(data); }