Skip to content

Commit 714065f

Browse files
authored
Merge pull request #200 from CSE-Shaco/develop
fix(manito): request 직렬화 문제 해결
2 parents f78677a + 2b3ea32 commit 714065f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/manitto/admin/page.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export default function ManitoAdminPage() {
7171

7272
try {
7373
setLoadingSessions(true);
74-
const res = await apiClient.post('/admin/manito/sessions', {code, name: title});
74+
const res = await apiClient.post('/admin/manito/sessions', {code, title});
7575
const created = res.data?.data;
7676

7777
// 세션 목록 갱신
@@ -274,7 +274,7 @@ export default function ManitoAdminPage() {
274274
>
275275
<div className="flex flex-col">
276276
<span className="font-medium text-zinc-100">
277-
{s.name || '(이름 없음)'}
277+
{s.title || '(이름 없음)'}
278278
</span>
279279
<span className="text-xs text-zinc-400">
280280
code: {s.code}

0 commit comments

Comments
 (0)