We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3b32853 + e871cb5 commit f428c14Copy full SHA for f428c14
app/(api)/api/judges/route.ts
@@ -1,8 +1,8 @@
1
import authenticated from '@utils/authentication/authenticated';
2
import { POST as post } from './post';
3
-import { GET } from './get';
+import { GET as get } from './get';
4
5
const POST = authenticated(post);
6
-// const GET = authenticated(get);
+const GET = authenticated(get);
7
8
export { POST, GET };
app/(api)/auth/register/route.ts
@@ -26,7 +26,6 @@ export async function POST(request: NextRequest) {
26
if (d) {
27
const dd = atob(d);
28
const parsed = JSON.parse(dd);
29
- console.log('HELLO');
30
body['email'] = parsed?.email ?? body.email;
31
body['name'] = parsed?.name ?? body.name;
32
body['specialty'] = parsed?.specialty ?? body.specialty;
0 commit comments