Skip to content

Commit

Permalink
chore: resolve merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
joanna209 committed Oct 5, 2023
2 parents d70b53f + f57bd7c commit 2fe840a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions frontend/src/app/course/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,7 @@ export async function generateMetadata(props: {
[key: string]: string;
};
}): Promise<Metadata> {
const { course } = (await get(
`/course/${props.params.id.toUpperCase()}`,
)) as {
const { course } = (await get(`/course/${props.params.id.toUpperCase()}`)) as {
course: Course;
};
return {
Expand Down

0 comments on commit 2fe840a

Please sign in to comment.