Skip to content

Commit

Permalink
fix: change component naming
Browse files Browse the repository at this point in the history
  • Loading branch information
yougyung committed Apr 10, 2024
1 parent d1a45cb commit f254486
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/(sub-page)/result/components/completed-category.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function CompletedCategory() {
<Image src={CompletedImage} width={1200} height={270} alt="category-fullfill-image" />
<div className="absolute ">
<Image className="m-auto" src={CheckImage} width={50} height={36} alt="category-fullfill-image" />
<p className="z-10 ">해당 파트의 졸업요건을 충족하셨습니다!</p>
<p className="zIndex-1">해당 파트의 졸업요건을 충족하셨습니다!</p>
</div>
</div>
);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import LabelContainer from '@/app/ui/view/atom/label-container/label-container';
import { cn } from '@/app/utils/shadcn/utils';
import { Table } from '../../view/molecule/table';
import CategoryFullfill from '@/app/(sub-page)/result/components/completed-category';
import CompletedCategory from '@/app/(sub-page)/result/components/completed-category';

const headerInfo = ['과목코드', '과목명', '학점'];

Expand All @@ -25,7 +25,7 @@ function ResultCategoryDetailContent() {
</div>
</div>
<LabelContainer label="전공필수" rightElement={<div className="text-2xl text-gray-6">18 / 18</div>} />
<CategoryFullfill />
<CompletedCategory />
<LabelContainer label="전공선택" rightElement={<div className="text-2xl text-gray-6">18 / 18</div>} />
<Table headerInfo={headerInfo} data={DUMMYDATA} />
</div>
Expand Down

0 comments on commit f254486

Please sign in to comment.