We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 266d0e5 commit 8f6105dCopy full SHA for 8f6105d
src/pages/Home/components/ShowDraftModal.tsx
@@ -57,10 +57,9 @@ const ShowDraftModal = ({ onClose }: ShowDraftModalProps) => {
57
<ModalBackgroundWrapper className="relative overflow-hidden rounded-lg p-5">
58
<div className="flex flex-col gap-1">
59
<p className="body-sb text-gray-80">임시저장 편지</p>
60
- <p className="caption-r text-black">로그아웃 시 임시 저장된 편지는 사라집니다</p>
61
</div>
62
<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 ? (
+ {draftLetters.length > 0 ? (
64
draftLetters.map((draft) => (
65
<div
66
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