@uktrade/react-component-library 0.22.14 → 0.22.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -20,7 +20,7 @@ export const TextAreaInput = ({ id, label, hint, error, labelAs, labelSize = "l"
20
20
  const characterMessage = remaining !== undefined
21
21
  ? (remaining < 0
22
22
  ? `You have ${Math.abs(remaining)} character${Math.abs(remaining) === 1 ? "" : "s"} too many`
23
- : `COW You have ${remaining} character${remaining === 1 ? "" : "s"} remaining`)
23
+ : `You have ${remaining} character${remaining === 1 ? "" : "s"} remaining`)
24
24
  : undefined;
25
25
  return (_jsxs("div", { className: clsx("govuk-form-group", {
26
26
  "govuk-form-group--error": hasError,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uktrade/react-component-library",
3
- "version": "0.22.14",
3
+ "version": "0.22.15",
4
4
  "description": "A collection of reusable React components following GOV.UK design patterns.",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -64,7 +64,7 @@ export const TextAreaInput = ({
64
64
  const characterMessage = remaining !== undefined
65
65
  ? (remaining < 0
66
66
  ? `You have ${Math.abs(remaining)} character${Math.abs(remaining) === 1 ? "" : "s"} too many`
67
- : `COW You have ${remaining} character${remaining === 1 ? "" : "s"} remaining`)
67
+ : `You have ${remaining} character${remaining === 1 ? "" : "s"} remaining`)
68
68
  : undefined;
69
69
 
70
70
  return (