Skip to content

Commit

Permalink
fix: tab flicker
Browse files Browse the repository at this point in the history
  • Loading branch information
LeleDallas committed May 2, 2023
1 parent 0119cfe commit 19303a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Components/SignInForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ const SignInForm = () => {
<Tabs className="..."
defaultActiveKey="Building"
type="card"
size="large"
style={{ padding: 20 }}
animated
centered
Expand Down Expand Up @@ -97,7 +96,8 @@ const SignInForm = () => {
<Form.Item name="passwordConf" rules={[{ required: true, message: 'Confirm your password!' }]}>
<Input.Password size="large" placeholder="Confirm Password" onChange={e => setPasswordConf(e.target.value)} />
</Form.Item></>,
}]}
},
]}
>
</Tabs>
<button onClick={(e) => handleSignUpSubmit(e, name, surname, password, passwordConf, email, type, setError)}>Sign Up</button>
Expand Down

0 comments on commit 19303a1

Please sign in to comment.