Skip to content

Commit

Permalink
Merge pull request #282 from oreumi-dreamer/dev
Browse files Browse the repository at this point in the history
💄 iOS Safari에서 모달을 터치하고 나갔을 때 포커스 아웃라인이 잘리는 문제 수정
  • Loading branch information
jihun-io authored Dec 23, 2024
2 parents eea527d + 57334b4 commit 8f58230
Show file tree
Hide file tree
Showing 11 changed files with 19 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/api/account/modify/route.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// /api/account/profile/route.js
// /api/account/modify/route.js

import { headers } from "next/headers";
import { db } from "@/lib/firebase";
Expand Down
2 changes: 2 additions & 0 deletions src/app/api/auth/update-email/route.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// api/auth/update-email/route.js

import { auth, db } from "@/lib/firebaseAdmin";
import { getFirestore, Timestamp } from "firebase-admin/firestore";

Expand Down
2 changes: 2 additions & 0 deletions src/app/api/comment/create/[postId]/route.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// api/comment/create/[postId]/route.js

import { headers } from "next/headers";
import {
doc,
Expand Down
2 changes: 2 additions & 0 deletions src/app/api/comment/delete/[postId]/route.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// api/comment/delete/[postId]/route.js

import { headers } from "next/headers";
import { doc, getDoc, updateDoc } from "firebase/firestore";

Expand Down
2 changes: 2 additions & 0 deletions src/app/api/comment/read/[postId]/route.js
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
2 changes: 2 additions & 0 deletions src/app/api/join/check-userid/route.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// api/join/check-userid/route.js

import { db } from "@/lib/firebase";
import { collection, query, where, getDocs } from "firebase/firestore";

Expand Down
2 changes: 2 additions & 0 deletions src/app/api/post/feeds/route.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
//api/post/feeds/route.js

import { headers } from "next/headers";
import { NextResponse } from "next/server";
import { db } from "@/lib/firebase";
Expand Down
2 changes: 2 additions & 0 deletions src/app/api/post/spark/[postId]/route.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// api/post/spark/[postId]/route.js

import { headers } from "next/headers";
import {
doc,
Expand Down
2 changes: 1 addition & 1 deletion src/app/api/post/update/[postId]/route.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
);
}
Expand Down
2 changes: 2 additions & 0 deletions src/app/api/tomong/streaming-token/route.js
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
2 changes: 1 addition & 1 deletion src/components/main/MainList.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
flex-direction: column;
align-items: center;
flex-basis: 100%;
overflow: hidden;
overflow: visible;
}

.load-more-button {
Expand Down

0 comments on commit 8f58230

Please sign in to comment.