Skip to content

Commit b28d688

Browse files
authored
Merge pull request #163 from hhjin1/card-hj
[Refector]할 일 생성모달 z-index수정
2 parents 1f113ec + a181848 commit b28d688

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/api/columns.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const createColumn = async ({
2121

2222
// 칼럼 목록 조회
2323
export 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
},

src/pages/dashboard/[dashboardId]/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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} />

0 commit comments

Comments
 (0)