Skip to content

Commit 77e83a5

Browse files
authored
Merge pull request #128 from codeit-maso/feature/Yun
🐛 fix: 페이지 로드중일때 메시지 삭제
2 parents c4efe36 + 21aaf1e commit 77e83a5

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/pages/Recipient/Recipient.jsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,10 +144,7 @@ export default function Recipient({ showDelete }) {
144144

145145
const selectedCard = messages.find((card) => card.id === selectedCardId);
146146

147-
if (!postData || messages.length < 0)
148-
return (
149-
<div className={styles['loading-message']}>페이지를 불러오는 중..</div>
150-
);
147+
if (!postData || messages.length < 0) return;
151148

152149
return (
153150
<>

0 commit comments

Comments
 (0)