Skip to content

Commit

Permalink
fix: add role attr in several major button
Browse files Browse the repository at this point in the history
  • Loading branch information
yougyung committed Apr 30, 2024
1 parent 63a0933 commit 8272373
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/ui/result/result-category/result-category-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ const filterSeveralMajor = (category: ResultCategoryKey) => {
case DUAL_MANDATORY_MAJOR:
case DUAL_ELECTIVE_MAJOR:
case DUAL_BASIC_ACADEMICAL_CULTURE:
return <Button label="복수전공" variant="outlined" size="xs" />;
return <Button label="복수전공" variant="outlined" size="xs" role="none presentation" />;
case SUB_MAJOR:
return <Button label="부전공" variant="outlined" size="xs" />;
return <Button label="부전공" variant="outlined" size="xs" role="none presentation" />;
default:
return <></>;
}
Expand Down

0 comments on commit 8272373

Please sign in to comment.