Skip to content

Commit 0dd68df

Browse files
committed
chore: 빌드 에러 수정
1 parent 9c1353b commit 0dd68df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/admin/app/studies/[studyId]/layout.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import { studyInfoApi } from "apis/study/studyInfoApi";
1+
import { studyApi } from "apis/study/studyApi";
22

33
export const generateMetadata = async ({
44
params: { studyId },
55
}: {
66
params: { studyId: string };
77
}) => {
8-
const study = await studyInfoApi.getStudyBasicInfo(+studyId);
8+
const study = await studyApi.getStudyBasicInfo(+studyId);
99
return {
1010
title: study ? study.title : "스터디",
1111
};

0 commit comments

Comments
 (0)