Skip to content

Commit

Permalink
Merge pull request side-project-pokehub#126 from side-project-pokehub…
Browse files Browse the repository at this point in the history
…/dev

path 경로 수정 및 워크플로우 변경
  • Loading branch information
cdm1263 committed May 20, 2024
1 parent 01ad3f9 commit 84894c5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/components/header/MobileNavMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const MobileNavMenu = () => {
도감
</div>
</Link>
<Link href="/cardedit" className={getClassName('/cardedit')}>
<Link href="/cardEdit" className={getClassName('/cardEdit')}>
<div className={styles.nav__item__mobile}>
<FiPlusSquare size={24} />
카드 제작
Expand Down
2 changes: 1 addition & 1 deletion src/components/mypage/MobileMypageAlert.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const MobileMypageAlert = ({ isOpen }: { isOpen: boolean }) => {
const router = useRouter();

const onMovetoMakecard = () => {
router.push('/cardedit');
router.push('/cardEdit');
};
return (
<>
Expand Down
2 changes: 1 addition & 1 deletion src/components/mypage/Mycard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const Mycard = () => {
const onMoveMakeCard = () => {
if (windowWidth <= 768) {
setIsAlert((prev) => !prev);
} else router.push('/cardedit');
} else router.push('/cardEdit');
};

const onModalToggle = (card?: Card) => {
Expand Down
2 changes: 1 addition & 1 deletion src/components/plate/FilterPlates.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const FilterPlates = () => {
>
<div className={styles.inner}>
<motion.span className={styles.description}>
*속성을 선택해주세요. (중복 선택 가능)
*타입을 선택해주세요. (중복 선택 가능)
</motion.span>
<motion.div className={styles.type_plates}>
{renderTypes(koreanTypes)}
Expand Down

0 comments on commit 84894c5

Please sign in to comment.