Skip to content

Commit ae7909b

Browse files
authored
fix: 포트폴리오 글 쓰기 오류 수정
1 parent f14e8db commit ae7909b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/screens/PortfolioWrite/PortfolioWrite.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ export default function PortfolioWrite() {
197197
isTemp: "true",
198198
image: imageUrl
199199
};
200-
const response = await api.post('/portfolio-service/save', null, { params, headers: { 'accept': 'application/json' } });
200+
const response = await api.post('/portfolio-service/save', params, { headers: { 'accept': 'application/json' } });
201201
const result = response.data;
202202
if (result.status === 200) {
203203
alert("게시되었습니다!");

0 commit comments

Comments
 (0)