We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cdce064 commit fdac684Copy full SHA for fdac684
frontend/src/components/NewGameForm.jsx
@@ -91,7 +91,10 @@ const NewGameForm = () => {
91
<header className="my-10 rounded-xl bg-slate-950 px-4 py-2 text-center text-4xl text-white">
92
Game Information
93
</header>
94
- <form className="flex min-w-fit flex-col items-center rounded-xl border-4 border-amber-500 bg-purple-900 px-5 py-8 text-center">
+ <form
95
+ autoComplete="off"
96
+ className="flex min-w-fit flex-col items-center rounded-xl border-4 border-amber-500 bg-purple-900 px-5 py-8 text-center"
97
+ >
98
<PlayerName id={1} name={player1Name} onChange={handleNameChange} />
99
<PlayerName id={2} name={player2Name} onChange={handleNameChange} />
100
<p className="text-myYellow">{errors.namesErrorMsg}</p>
0 commit comments