Skip to content

Commit

Permalink
Feat: 게시판 데이터에 마일리지 글로벌 항목 추가(#12)
Browse files Browse the repository at this point in the history
  • Loading branch information
ohinhyuk committed Aug 24, 2023
1 parent a6a852e commit 03958d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/assets/data/board/board.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export enum Board {

export const BoardList = [
'마일리지 카테고리',
'마일리지 글로벌 항목',
'마일리지 항목',
'마일리지 조회',
'마일리지 등록',
Expand Down
2 changes: 1 addition & 1 deletion src/components/common/Drawer/Drawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export default function MiniDrawer() {
</DrawerHeader>
{/* 사이드바 리스트 아이템 */}
<List>
{[0, 1, 2, 3, 4, 5, 6, 7, 8, 9].map((boardNum, index) => (
{[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10].map((boardNum, index) => (
<Box key={index}>
<DrawerListItem
boardNum={boardNum}
Expand Down

0 comments on commit 03958d9

Please sign in to comment.