Skip to content

Commit

Permalink
fix: 부가 정보 입력 뒤로 가기 기능 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
bottlewook committed Mar 8, 2024
1 parent c7a94c2 commit d5988b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/(car-details)/car-details/hydrated-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ function CarDetailsPage() {
<>
{step <= 5 && (
<>
<Header stepBack={step > 1 ? onBack : undefined} />
<Header stepBack={step >= 1 ? onBack : undefined} />
<Spacing size={16} />
<ProgressBar progressCount={5} currentStep={step} />
<Spacing size={32} />
Expand Down
2 changes: 1 addition & 1 deletion src/app/(car-details)/car-wash-details/hydrated-page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ function CarWashDetailsPage() {
<>
{step <= 3 && (
<>
<Header stepBack={step > 1 ? onBack : undefined} />
<Header stepBack={step >= 1 ? onBack : undefined} />
<Spacing size={16} />
<ProgressBar progressCount={3} currentStep={step} />
<Spacing size={32} />
Expand Down

0 comments on commit d5988b2

Please sign in to comment.