Skip to content

Commit a925642

Browse files
committed
♻️ [refactor] : 누락 타입 적용 불필요 뷰 삭제
1 parent 48a4faa commit a925642

File tree

3 files changed

+6
-22
lines changed

3 files changed

+6
-22
lines changed

src/router/index.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -111,11 +111,6 @@ const router = createRouter({
111111
path: '/statistics',
112112
name: 'Statistics',
113113
component: () => import('../views/StatisticsView.vue')
114-
},
115-
{
116-
path: '/task-detail',
117-
name: 'TaskDetail',
118-
component: () => import('../views/TaskDetailView.vue')
119114
}
120115
]
121116
})

src/types/common.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,12 @@ export interface ColorSelectProps {
7979
newLabel: LabelDataTypes
8080
}
8181

82+
export interface CategoryForm {
83+
name: string
84+
code: string
85+
mainCategoryId?: number
86+
}
87+
8288
export interface CategoryDropdownProps {
8389
options: Category[] | SubCategory[]
8490
labelName: string

src/views/TaskDetailView.vue

Lines changed: 0 additions & 17 deletions
This file was deleted.

0 commit comments

Comments
 (0)