File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
pages/dashboard/[dashboardId] Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ export const createColumn = async ({
2121
2222// 칼럼 목록 조회
2323export const getColumns = async ( { dashboardId } : { dashboardId : number } ) => {
24- const res = await axiosInstance . get ( apiRoutes . columns ( TEAM_ID ) , {
24+ const res = await axiosInstance . get ( apiRoutes . columns ( ) , {
2525 params : {
2626 dashboardId,
2727 } ,
@@ -56,7 +56,7 @@ export const getColumn = async ({
5656 dashboardId : number ;
5757 columnId : number ;
5858} ) => {
59- const res = await axiosInstance . get ( apiRoutes . columns ( TEAM_ID ) , {
59+ const res = await axiosInstance . get ( apiRoutes . columns ( ) , {
6060 params : {
6161 dashboardId,
6262 } ,
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ export default function Dashboard() {
127127 { /* fixed 버튼 (모바일, 태블릿용) */ }
128128 < div
129129 className = { `
130- fixed bottom-0 left-0 w-full p-3 z-50 bg-white border-t border-gray-200
130+ fixed bottom-0 left-0 w-full p-3 z-10 bg-white border-t border-gray-200
131131 flex justify-center lg:hidden` }
132132 >
133133 < ColumnsButton onClick = { openModal } />
You can’t perform that action at this time.
0 commit comments