Skip to content

Commit

Permalink
Fix/#229 배포 빌드 버그 픽스 (#230)
Browse files Browse the repository at this point in the history
* fix: type이 변경되었는데, 예전 코드에 반영이 안 되서 생긴 문제 해결

#229

* fix: eslint 규칙이 안지켜져서 생긴 문제 해결

#229

* fix: 사용되는데 설치 안 되어 있는 패키지 설치

#229
  • Loading branch information
llddang authored May 30, 2024
1 parent 38bd852 commit 28b28a8
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 209 deletions.
20 changes: 10 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions src/app/team/[teamId]/study/[studyId]/page.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* eslint-disable @typescript-eslint/no-unused-vars */

'use client';

import { Flex, Grid, IconButton, Text, Link } from '@chakra-ui/react';
Expand Down Expand Up @@ -59,6 +61,7 @@ const Page = () => {
<Grid gap="2" templateColumns={{ base: 'repeat(2, 1fr)', lg: 'repeat(4, 1fr)' }}>
{studyAssetCardData.map((data) => (
<StudyAssetCard
id={data.id}
key={data.title}
title={data.title}
content={data.content}
Expand Down
1 change: 1 addition & 0 deletions src/containers/studyAsset/StudyAssets/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ const StudyAssets = () => {
<Grid gap={{ sm: '2', md: '4', xl: '8' }} templateColumns="repeat(4, 1fr)" w="100%">
{studyAssetCardDataAll.map((data) => (
<StudyAssetCard
id={data.id}
key={data.title}
title={data.title}
content={data.content}
Expand Down
2 changes: 2 additions & 0 deletions src/containers/team/CreateStudyModal/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* eslint-disable @typescript-eslint/no-unused-vars */

'use client';

import { Box, Text, VStack } from '@chakra-ui/react';
Expand Down
2 changes: 1 addition & 1 deletion src/mocks/curriculum.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { CurriculumItemProps } from '@/components/CurriculumCard/types';
import { CurriculumItemProps } from '@/containers/study/CurriculumCard/types';

const CurriculumCardData: CurriculumItemProps[] = [
{
Expand Down
Loading

0 comments on commit 28b28a8

Please sign in to comment.