File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -5,16 +5,13 @@ import { twMerge } from 'tailwind-merge';
55import { getCurrentRollingPaper } from '@/apis/rolling' ;
66import { NoticeIcon } from '@/assets/icons' ;
77
8- // TODO: 더미 완전히 제거
9- const DUMMY = '11월 15일은 수능! 고생하는 수험생들을 위해 응원의 편지를 적어주세요!' ;
10-
118const 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 } ` } >
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import Comment from './components/Comment';
1313import CommentDetailModal from './components/CommentDetailModal' ;
1414import WriteCommentButton from './components/WriteCommentButton' ;
1515
16- // TODO: 더미 완전히 제거
16+ // TODO: 로그인 구현 완료 시, 더미 완전히 제거
1717const DUMMY_USER_ZIP_CODE = '1DR41' ;
1818const DUMMY_MESSAGE_COUNT = 20 ;
1919
You can’t perform that action at this time.
0 commit comments