diff --git a/src/app/api/account/modify/route.js b/src/app/api/account/modify/route.js index 857a5112..e624003f 100644 --- a/src/app/api/account/modify/route.js +++ b/src/app/api/account/modify/route.js @@ -1,4 +1,4 @@ -// /api/account/profile/route.js +// /api/account/modify/route.js import { headers } from "next/headers"; import { db } from "@/lib/firebase"; diff --git a/src/app/api/auth/update-email/route.js b/src/app/api/auth/update-email/route.js index 81acd597..fae089ea 100644 --- a/src/app/api/auth/update-email/route.js +++ b/src/app/api/auth/update-email/route.js @@ -1,3 +1,5 @@ +// api/auth/update-email/route.js + import { auth, db } from "@/lib/firebaseAdmin"; import { getFirestore, Timestamp } from "firebase-admin/firestore"; diff --git a/src/app/api/comment/create/[postId]/route.js b/src/app/api/comment/create/[postId]/route.js index c4ff4ae3..108d351d 100644 --- a/src/app/api/comment/create/[postId]/route.js +++ b/src/app/api/comment/create/[postId]/route.js @@ -1,3 +1,5 @@ +// api/comment/create/[postId]/route.js + import { headers } from "next/headers"; import { doc, diff --git a/src/app/api/comment/delete/[postId]/route.js b/src/app/api/comment/delete/[postId]/route.js index 48752ec3..fc6dae80 100644 --- a/src/app/api/comment/delete/[postId]/route.js +++ b/src/app/api/comment/delete/[postId]/route.js @@ -1,3 +1,5 @@ +// api/comment/delete/[postId]/route.js + import { headers } from "next/headers"; import { doc, getDoc, updateDoc } from "firebase/firestore"; diff --git a/src/app/api/comment/read/[postId]/route.js b/src/app/api/comment/read/[postId]/route.js index 457f118e..e507fed1 100644 --- a/src/app/api/comment/read/[postId]/route.js +++ b/src/app/api/comment/read/[postId]/route.js @@ -1,3 +1,5 @@ +// api/comment/read/[postId]/route.js + import { headers } from "next/headers"; import { doc, getDoc } from "firebase/firestore"; import { db } from "@/lib/firebase"; diff --git a/src/app/api/join/check-userid/route.js b/src/app/api/join/check-userid/route.js index 2dd1e6b0..0df35c3f 100644 --- a/src/app/api/join/check-userid/route.js +++ b/src/app/api/join/check-userid/route.js @@ -1,3 +1,5 @@ +// api/join/check-userid/route.js + import { db } from "@/lib/firebase"; import { collection, query, where, getDocs } from "firebase/firestore"; diff --git a/src/app/api/post/feeds/route.js b/src/app/api/post/feeds/route.js index 9ab7c6f8..81cf5ada 100644 --- a/src/app/api/post/feeds/route.js +++ b/src/app/api/post/feeds/route.js @@ -1,3 +1,5 @@ +//api/post/feeds/route.js + import { headers } from "next/headers"; import { NextResponse } from "next/server"; import { db } from "@/lib/firebase"; diff --git a/src/app/api/post/spark/[postId]/route.js b/src/app/api/post/spark/[postId]/route.js index 66b54ce8..1229d11f 100644 --- a/src/app/api/post/spark/[postId]/route.js +++ b/src/app/api/post/spark/[postId]/route.js @@ -1,3 +1,5 @@ +// api/post/spark/[postId]/route.js + import { headers } from "next/headers"; import { doc, diff --git a/src/app/api/post/update/[postId]/route.js b/src/app/api/post/update/[postId]/route.js index 9a7d45d1..756cd053 100644 --- a/src/app/api/post/update/[postId]/route.js +++ b/src/app/api/post/update/[postId]/route.js @@ -85,7 +85,7 @@ export async function POST(request, { params }) { moods.some((mood) => !moodIds.includes(mood)) ) { return new Response( - JSON.stringify({ error: "유효하지 않은 장르 또는 느낌입니���." }), + JSON.stringify({ error: "유효하지 않은 장르 또는 느낌입니다." }), { status: 400 } ); } diff --git a/src/app/api/tomong/streaming-token/route.js b/src/app/api/tomong/streaming-token/route.js index 6a590d3c..2c715f30 100644 --- a/src/app/api/tomong/streaming-token/route.js +++ b/src/app/api/tomong/streaming-token/route.js @@ -1,3 +1,5 @@ +// api/tomong/streaming-token/route.js + import { generateToken } from "@/lib/api/tokenManager"; import { verifyUser } from "@/lib/api/auth"; import { headers } from "next/headers"; diff --git a/src/components/main/MainList.module.css b/src/components/main/MainList.module.css index 3fc83770..fce51ecf 100644 --- a/src/components/main/MainList.module.css +++ b/src/components/main/MainList.module.css @@ -4,7 +4,7 @@ flex-direction: column; align-items: center; flex-basis: 100%; - overflow: hidden; + overflow: visible; } .load-more-button {