Skip to content

Commit

Permalink
chore: 파일 주석처리
Browse files Browse the repository at this point in the history
  • Loading branch information
KimKyuHoi committed Nov 14, 2024
1 parent c570483 commit 59d4229
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/pages/myPage/components/VideoManagement.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const VideoManagement = () => {
<>
<SectionTitle>영상 관리</SectionTitle>
<VideoSection>
<ShortsGrid />
<ShortsGrid categoryId={0} />
</VideoSection>
</>
);
Expand Down
5 changes: 3 additions & 2 deletions src/pages/myPage/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ import styled from 'styled-components';
import MyPageHeader from '@/pages/myPage/components/Header';
import MembershipStatus from '@/pages/myPage/components/MembershipStatus';
import ProfileEditForm from '@/pages/myPage/components/ProfileEditForm';
import VideoManagement from '@/pages/myPage/components/VideoManagement';

// import VideoManagement from '@/pages/myPage/components/VideoManagement';

const MyProfilePage = () => {
return (
Expand All @@ -14,7 +15,7 @@ const MyProfilePage = () => {
<WhiteSpace />
<ProfileEditForm />
<WhiteSpace />
<VideoManagement />
{/* <VideoManagement /> */}
</MyPageContainer>
);
};
Expand Down

0 comments on commit 59d4229

Please sign in to comment.