We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f78677a + 2b3ea32 commit 714065fCopy full SHA for 714065f
src/app/manitto/admin/page.jsx
@@ -71,7 +71,7 @@ export default function ManitoAdminPage() {
71
72
try {
73
setLoadingSessions(true);
74
- const res = await apiClient.post('/admin/manito/sessions', {code, name: title});
+ const res = await apiClient.post('/admin/manito/sessions', {code, title});
75
const created = res.data?.data;
76
77
// 세션 목록 갱신
@@ -274,7 +274,7 @@ export default function ManitoAdminPage() {
274
>
275
<div className="flex flex-col">
276
<span className="font-medium text-zinc-100">
277
- {s.name || '(이름 없음)'}
+ {s.title || '(이름 없음)'}
278
</span>
279
<span className="text-xs text-zinc-400">
280
code: {s.code}
0 commit comments