build.sh bug fixes

This commit is contained in:
2026-03-20 23:06:39 -04:00
parent 0a048271c6
commit 3ac72b7ac9
22 changed files with 87 additions and 156 deletions

View File

@@ -100,10 +100,7 @@ export default function SupportModal({ onClose }) {
className="input"
placeholder="Jane Smith"
value={name}
onChange={e = autoComplete="new-password"> setName(e.target.value)}
maxLength={100}
/>
onChange={e => setName(e.target.value)} autoComplete="new-password" maxLength={100} />
</div>
<div className="flex-col gap-1">
@@ -113,9 +110,7 @@ export default function SupportModal({ onClose }) {
type="email"
placeholder="jane@example.com"
value={email}
onChange={e = autoComplete="new-password"> setEmail(e.target.value)}
maxLength={200}
/>
onChange={e => setEmail(e.target.value)} autoComplete="new-password" maxLength={200} />
</div>
<div className="flex-col gap-1">
@@ -127,8 +122,7 @@ export default function SupportModal({ onClose }) {
onChange={e => setMessage(e.target.value)}
rows={4}
maxLength={2000}
style={{ resize: 'vertical' }}
/>
style={{ resize: 'vertical' }} />
<span className="text-xs" style={{ color: 'var(--text-tertiary)', alignSelf: 'flex-end' }}>
{message.length}/2000
</span>
@@ -157,8 +151,7 @@ export default function SupportModal({ onClose }) {
onChange={e => setCaptchaAnswer(e.target.value)}
style={{ width: 90 }}
min={0}
max={999}
/>
max={999} />
<button
type="button"
className="btn-icon"