Skip to content

Commit

Permalink
🚀 221223: GlobalHeader에 올바른 url이 설정되도록 수정
Browse files Browse the repository at this point in the history
### GlobalHeader에 올바른 url이 설정되도록 수정 #263
  • Loading branch information
dev-angelo authored Dec 23, 2022
2 parents 7f87aea + d836a88 commit 5e38e17
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/template/codeTogetherTemplate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ interface ICodeTogetherTemplateProps {
};
}

export default ({ data, path }: PageProps<ICodeTogetherTemplateProps>) => {
export default ({ data, location }: PageProps<ICodeTogetherTemplateProps>) => {
const { pathname: path } = location;
const { allMdx, graduateReview, masthead, registration, timeTable } = data;

const mastheadInfo = strainFrontmatterInfo(masthead);
Expand Down

0 comments on commit 5e38e17

Please sign in to comment.