Skip to content

Commit

Permalink
프로덕션 배포 (#558)
Browse files Browse the repository at this point in the history
* fix: /group이 포함되지 않도록 수정 (#554)

* fix: 링크가 영역 벗어나는 이슈 해결 (#557)

* fix: 링크가 영역 벗어나는 이슈 해결

* feat: 공지사항 역순으로 정렬
  • Loading branch information
100Gyeon authored Oct 4, 2023
1 parent a5c38b1 commit 48d53c3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ const SDescription = styled('p', {

a: {
textDecoration: 'underline',
wordBreak: 'break-all',
},

'@tablet': {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,17 @@ export default function NoticeSlider({ notices }: NoticeSliderProps) {
afterChange={updateCurrentIndex}
>
{notices ? (
notices.map(notice => (
<Disclosure
key={notice.id}
title={notice.title}
subTitle={notice.subTitle}
contents={notice.contents}
createdDate={dayjs(notice.createdDate).format('YYYY.MM.DD')}
/>
))
notices
.map(notice => (
<Disclosure
key={notice.id}
title={notice.title}
subTitle={notice.subTitle}
contents={notice.contents}
createdDate={dayjs(notice.createdDate).format('YYYY.MM.DD')}
/>
))
.reverse()
) : (
// to minimize CLS, put a placeholder
<SPlaceholder />
Expand Down

0 comments on commit 48d53c3

Please sign in to comment.