bugs fixes due to reges curruption

This commit is contained in:
2026-03-20 23:19:45 -04:00
parent 6da08942a7
commit fc0c071d1d
18 changed files with 74 additions and 74 deletions

View File

@@ -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} />