Skip to content

Commit

Permalink
chore: title 워딩 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hamo-o committed Aug 30, 2024
1 parent 97f6232 commit 9c1353b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apps/admin/app/studies/detail-info/[studyId]/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ export const generateMetadata = async ({
}) => {
const study = await studyApi.getStudyBasicInfo(+studyId);
return {
title: study ? study.title : "스터디 상세 작성하기",
title: study
? `${study.title} 스터디 상세 작성하기`
: "스터디 상세 작성하기",
};
};

Expand Down

0 comments on commit 9c1353b

Please sign in to comment.