Skip to content

Commit

Permalink
fix: autoComplete=off 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
yeona813 committed Jun 24, 2024
1 parent 919d935 commit b69bc58
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/components/Detail/modal/EditModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,7 @@ export const EditModal = ({ accessToken }: EditModalProps) => {

return (
<form
autoComplete="off"
className="flex flex-col gap-[40px] mobile:gap-5"
onSubmit={handleSubmit(onSubmit)}
>
Expand Down
1 change: 1 addition & 0 deletions src/components/Detail/modal/ReviewEditModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ export const ReviewEditModal = ({ accessToken }: ReviewEditModalProps) => {

return (
<form
autoComplete="off"
className="flex flex-col gap-[40px] mobile:gap-5"
onSubmit={handleSubmit(onSubmit)}
>
Expand Down
1 change: 1 addition & 0 deletions src/components/Detail/modal/ReviewModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ export const ReviewModal = ({ accessToken }: ReviewModalProps) => {

return (
<form
autoComplete="off"
className="flex flex-col gap-[40px] mobile:gap-5"
onSubmit={handleSubmit(onSubmit)}
>
Expand Down
1 change: 1 addition & 0 deletions src/components/Home/modal/AddModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ export const AddModal = ({ accessToken, title }: ProductModalProps) => {
<div>
{isLoading && <LoadingSpinner />}
<form
autoComplete="off"
className="flex flex-col gap-[40px] mobile:gap-5"
onSubmit={handleSubmit(onSubmit)}
>
Expand Down
1 change: 1 addition & 0 deletions src/components/Login/LoginForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ const LoginForm = () => {

return (
<form
autoComplete="off"
className="flex flex-col gap-10 mobile:gap-[30px]"
onSubmit={handleSubmit(onSubmit)}
>
Expand Down
1 change: 1 addition & 0 deletions src/components/Oauth/SocialLoginForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ const SocialLoginForm = ({ provider, code }: SocialLoginFormProps) => {

return (
<form
autoComplete="off"
className="flex flex-col gap-[60px]"
onSubmit={handleSubmit(onSubmit)}
>
Expand Down
1 change: 1 addition & 0 deletions src/components/Profile/modal/EditModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ const EditModal = ({ accessToken, loginedId }: EditModalProps) => {

return (
<form
autoComplete="off"
className="flex flex-col gap-[40px] mobile:gap-[20px]"
onSubmit={handleSubmit(onSubmit)}
>
Expand Down
1 change: 1 addition & 0 deletions src/components/Register/RegisterForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ const RegisterForm = () => {

return (
<form
autoComplete="off"
className="flex flex-col gap-10 mobile:gap-[30px]"
onSubmit={handleSubmit(onSubmit)}
>
Expand Down
1 change: 1 addition & 0 deletions src/shared/ui/Menu/Gnb/GnbSearch.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ const GnbSearchBar = ({
className={`${isOpenMobileSearchBar ? 'block mobile:absolute mobile:z-10 mobile:right-[20px] md:ml-auto lg:ml-auto' : 'mobile:hidden md:block md:ml-auto lg:ml-auto lg:block'}`}
>
<form
autoComplete="off"
onSubmit={handleSubmit(onSubmit)}
className="mobile:w-[291px] md:w-[300px] lg:w-[320px] mobile:h-[48px] md:h-[50px] lg:h-[50px] flex items-center justify-start rounded-[28px] bg-black-25"
>
Expand Down

0 comments on commit b69bc58

Please sign in to comment.