Skip to content

Commit 8f6105d

Browse files
committed
design: 편지 공유 요청 모달 텍스트 수정
1 parent 266d0e5 commit 8f6105d

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/pages/Home/components/ShowDraftModal.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,9 @@ const ShowDraftModal = ({ onClose }: ShowDraftModalProps) => {
5757
<ModalBackgroundWrapper className="relative overflow-hidden rounded-lg p-5">
5858
<div className="flex flex-col gap-1">
5959
<p className="body-sb text-gray-80">임시저장 편지</p>
60-
<p className="caption-r text-black">로그아웃 시 임시 저장된 편지는 사라집니다</p>
6160
</div>
6261
<div className="mt-6 flex max-h-60 min-h-auto w-[251px] flex-col gap-[10px] overflow-y-scroll [&::-webkit-scrollbar]:hidden">
63-
{draftLetters.length > 0 ? (
62+
{draftLetters.length > 0 ? (
6463
draftLetters.map((draft) => (
6564
<div
6665
className="text-gray-80 body-m flex h-10 w-full items-center justify-between gap-1 rounded-lg bg-white p-3"

0 commit comments

Comments
 (0)