Skip to content

Commit

Permalink
fix: history tab 클릭시 창 열림 고정되도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
steven-yn committed May 7, 2024
1 parent e3addaf commit 1ac4def
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/SkillList/SkillList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const Overlay = () => {
as="button"
type="button"
className={buttonStyle}
onClick={() => setIsModalOpen((prev) => !prev)}
onClick={() => setIsModalOpen(() => true)}
>
다루는 스킬 더 보기
<CommonIcon
Expand Down
3 changes: 1 addition & 2 deletions src/components/SkillSlide/SkillSlide.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ import {
iconVariants,
interactionBarStyle,
navigationButtonStyle,
readMoreButtonStyle,
swiperItemStyle,
swiperTopStyle,
swiperWrapStyle,
Expand Down Expand Up @@ -143,7 +142,7 @@ const Menu = () => {
{!isTabOpen && (
<TextTab
onClick={() => {
setIsTabOpen(() => true);
setIsTabOpen((prev) => !prev);
}}
>
Expand Down

0 comments on commit 1ac4def

Please sign in to comment.