bugs fixes due to reges curruption
This commit is contained in:
@@ -100,7 +100,7 @@ export default function SupportModal({ onClose }) {
|
||||
className="input"
|
||||
placeholder="Jane Smith"
|
||||
value={name}
|
||||
onChange={e = /> setName(e.target.value)} autoComplete="new-password" maxLength={100} />
|
||||
onChange={e => setName(e.target.value)} autoComplete="new-password" maxLength={100} />
|
||||
</div>
|
||||
|
||||
<div className="flex-col gap-1">
|
||||
@@ -110,7 +110,7 @@ export default function SupportModal({ onClose }) {
|
||||
type="email"
|
||||
placeholder="jane@example.com"
|
||||
value={email}
|
||||
onChange={e = /> setEmail(e.target.value)} autoComplete="new-password" maxLength={200} />
|
||||
onChange={e => setEmail(e.target.value)} autoComplete="new-password" maxLength={200} />
|
||||
</div>
|
||||
|
||||
<div className="flex-col gap-1">
|
||||
@@ -148,7 +148,7 @@ export default function SupportModal({ onClose }) {
|
||||
type="number"
|
||||
placeholder="Answer"
|
||||
value={captchaAnswer}
|
||||
onChange={e = /> setCaptchaAnswer(e.target.value)}
|
||||
onChange={e => setCaptchaAnswer(e.target.value)}
|
||||
style={{ width: 90 }}
|
||||
min={0}
|
||||
max={999} />
|
||||
|
||||
Reference in New Issue
Block a user