Skip to content

Commit

Permalink
๐Ÿ› ์ด๋ฏธ์ง€๋ฅผ ๋„ฃ์ง€ ์•Š์•˜์„ ๋•Œ๋„ ์ด๋ฏธ์ง€๊ฐ€ ์กด์žฌํ•œ๋‹ค๊ณ  ์ธ์‹๋˜๋Š” ๋ฌธ์ œ ์ˆ˜์ •
Browse files Browse the repository at this point in the history
  • Loading branch information
hanj33 committed Dec 20, 2024
1 parent e74b7b2 commit 328d2a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/write/WritePost.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -654,7 +654,7 @@ export default function WritePost({
<span className="sr-only">๊ธ€ ์ž‘์„ฑ</span>
<textarea
placeholder="์˜ค๋Š˜์€ ์–ด๋–ค ๊ฟˆ์„ ๊พธ์…จ๋‚˜์š”?"
className={`${styles["text-field-area"]} ${(imageFiles || remainingImages) && styles["has-image"]}`}
className={`${styles["text-field-area"]} ${(imageFiles?.length > 0 || remainingImages?.length > 0) && styles["has-image"]}`}
onChange={handleContentChange}
value={contentValue}
/>
Expand Down

0 comments on commit 328d2a9

Please sign in to comment.