diff --git a/h/static/scripts/group-forms/components/CreateGroupForm.tsx b/h/static/scripts/group-forms/components/CreateGroupForm.tsx index 9e25931e978..6a2b3dce7a3 100644 --- a/h/static/scripts/group-forms/components/CreateGroupForm.tsx +++ b/h/static/scripts/group-forms/components/CreateGroupForm.tsx @@ -6,11 +6,21 @@ function Star() { return *; } -function CharacterCounter({ value, limit }: { value: number; limit: number }) { +function CharacterCounter({ + value, + limit, + testid, +}: { + value: number; + limit: number; + testid: string; +}) { return (
- {value}/{limit} + + {value}/{limit} +
); } @@ -46,13 +56,21 @@ export default function CreateGroupForm() {