feat: enforce tighter character limits for site, funnel, and monitor names to improve UI consistency and usability

This commit is contained in:
Usman Baig
2026-02-22 20:07:00 +01:00
parent da0366603e
commit acac536590
5 changed files with 11 additions and 10 deletions

View File

@@ -192,7 +192,7 @@ export default function NewSitePage() {
id="name"
required
autoFocus
maxLength={255}
maxLength={100}
value={formData.name}
onChange={(e) => setFormData({ ...formData, name: e.target.value })}
placeholder="My Website"