build.sh bug fixes
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user