Skip to content

Commit 7c5b26b

Browse files
committed
style: 더미 제거
1 parent 04c48c8 commit 7c5b26b

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

src/components/NoticeRollingPaper.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,13 @@ import { twMerge } from 'tailwind-merge';
55
import { getCurrentRollingPaper } from '@/apis/rolling';
66
import { NoticeIcon } from '@/assets/icons';
77

8-
// TODO: 더미 완전히 제거
9-
const DUMMY = '11월 15일은 수능! 고생하는 수험생들을 위해 응원의 편지를 적어주세요!';
10-
118
const NoticeRollingPaper = () => {
129
const { data } = useQuery({
1310
queryKey: ['notice-rolling-paper'],
1411
queryFn: () => getCurrentRollingPaper(),
1512
});
1613

17-
const noticeText = data?.title ?? DUMMY;
14+
const noticeText = data?.title;
1815

1916
return (
2017
<Link to={`/board/rolling/${data?.eventPostId}`}>

src/pages/RollingPaper/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import Comment from './components/Comment';
1313
import CommentDetailModal from './components/CommentDetailModal';
1414
import WriteCommentButton from './components/WriteCommentButton';
1515

16-
// TODO: 더미 완전히 제거
16+
// TODO: 로그인 구현 완료 시, 더미 완전히 제거
1717
const DUMMY_USER_ZIP_CODE = '1DR41';
1818
const DUMMY_MESSAGE_COUNT = 20;
1919

0 commit comments

Comments
 (0)