diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-02-22 22:58:00 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-02-22 22:58:00 +0700 |
| commit | 89d99c0386750af7a29678344fe0ed8fb6435d4f (patch) | |
| tree | 536640f43219e5d8f264784ec86f0205f7590c3d | |
| parent | 321e0c09be4b26d72b470407217262d10c88089d (diff) | |
fix
| -rw-r--r-- | src/lib/auth/components/PersonalProfile.jsx | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/lib/auth/components/PersonalProfile.jsx b/src/lib/auth/components/PersonalProfile.jsx index 29628be9..46253ef1 100644 --- a/src/lib/auth/components/PersonalProfile.jsx +++ b/src/lib/auth/components/PersonalProfile.jsx @@ -65,7 +65,10 @@ const PersonalProfile = () => { </button> {isOpen && ( - <form className='p-4 border-t border-gray_r-6 flex flex-col gap-y-4' onSubmit={handleSubmit(onSubmitHandler)}> + <form + className='p-4 border-t border-gray_r-6 flex flex-col gap-y-4' + onSubmit={handleSubmit(onSubmitHandler)} + > <div> <label>Email</label> <input |
