Skip to content

Commit

Permalink
chore: variant 변수명 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
dahyeo-n committed Jan 14, 2025
1 parent 1f11412 commit 1d645e8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/auth/(authWithLayout)/sign-in/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const SignInPage = () => {
<SquareButtonL
type='submit'
disabled={!isFormDataValid}
variant={isFormDataValid ? 'primary' : 'tertiaty'}
variant={isFormDataValid ? 'primary' : 'tertiary'}
>
로그인
</SquareButtonL>
Expand Down
2 changes: 1 addition & 1 deletion src/app/auth/(authWithLayout)/sign-up/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ const SignUpPage = () => {
<SquareButtonL
type='submit'
disabled={!isFormDataValid}
variant={isFormDataValid ? 'primary' : 'tertiaty'}
variant={isFormDataValid ? 'primary' : 'tertiary'}
>
<p>회원가입</p>
</SquareButtonL>
Expand Down

0 comments on commit 1d645e8

Please sign in to comment.