Skip to content

Commit

Permalink
Merge pull request #277 from team-abcdedu/fix/post-line-break/cmh
Browse files Browse the repository at this point in the history
fix: 게시글 내용 조회 줄바꿈 처리
  • Loading branch information
imdaxsz authored Dec 6, 2024
2 parents b9102c1 + f0e2760 commit fcc0a66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/Community/components/PostSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export default function PostSection({
</div>
</div>
<hr className='border-1 border-gray-300 w-full' />
<p className='px-20 my-100'>{post?.content}</p>
<p className='px-20 my-80 whitespace-pre-wrap'>{post?.content}</p>
<hr className='border-1 border-gray-300 w-full' />
</section>
);
Expand Down

0 comments on commit fcc0a66

Please sign in to comment.