Skip to content

Commit

Permalink
feat: 액세서리 선택 페이지 라우팅 기능 구현 #25
Browse files Browse the repository at this point in the history
  • Loading branch information
jinlee1703 committed Feb 10, 2024
1 parent 502b6ae commit 719268a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/production/button-group/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ function ButtonGroup(props: ButtonGroupProps) {
<Button
text={props.step < 3 ? '다음 단계로' : '결과 확인하기'}
onClick={() => {
if (props.step < 2) navigate(`/production?step=${props.step + 1}`);
if (props.step < 3) navigate(`/production?step=${props.step + 1}`);
}}
/>
</Container>
Expand Down

0 comments on commit 719268a

Please sign in to comment.