Skip to content

Commit

Permalink
fix: 렌더링 오류 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hamo-o committed Aug 20, 2024
1 parent 3bf9485 commit 342e5f3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/admin/app/studies/[study]/assignments/[id]/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import type { ReactNode } from "react";
const AssignmentLayout = ({
create,
view,
}: Readonly<{
}: {
create: ReactNode;
view: ReactNode;
}>) => {
}) => {
// TODO: 스터디 과제 상세 조회
const isRegistered = true;

Expand Down
5 changes: 5 additions & 0 deletions apps/admin/app/studies/[study]/assignments/default.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const Default = () => {
return null;
};

export default Default;

0 comments on commit 342e5f3

Please sign in to comment.