Skip to content

Commit

Permalink
🐛 Fix: build 오류 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
SNXWXH committed Jul 27, 2024
1 parent c84441d commit 6f5ee7b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/api/questions/route.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { NextRequest, NextResponse } from 'next/server';
import { NextResponse } from 'next/server';
import { TQuestionHandlerProps } from '@/types';

export async function GET(req: NextRequest) {
export async function GET() {
try {
const response = await fetch(`${process.env.API_URL}/generate_questions`, {
method: 'POST',
Expand Down

0 comments on commit 6f5ee7b

Please sign in to comment.