Skip to content

Commit

Permalink
fix: 누락된 modal props
Browse files Browse the repository at this point in the history
  • Loading branch information
hamo-o committed Aug 30, 2024
1 parent 0dd68df commit 6d84f03
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions apps/admin/app/studies/[studyId]/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ const StudyLayout = ({
);
};

export default StudyLayout;

const MainLayoutStyle = {
height: "100vh",
overflow: "auto",
};

export default StudyLayout;
5 changes: 3 additions & 2 deletions apps/admin/app/studies/detail-info/[studyId]/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ const StudyDetailInfoLayout = ({
modal,
}: Readonly<{
children: React.ReactNode;
modal: React.ReactNode;
}>) => {
return (
<main style={MainLayoutStyle}>
Expand All @@ -27,9 +28,9 @@ const StudyDetailInfoLayout = ({
);
};

export default StudyDetailInfoLayout;

const MainLayoutStyle = {
height: "100vh",
overflow: "auto",
};

export default StudyDetailInfoLayout;

0 comments on commit 6d84f03

Please sign in to comment.