@jobber/components-native 0.85.1-JOB-124062-e9724e3.22 → 0.85.1-JOB-124062-569fcb4.27

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.
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jobber/components-native",
3
- "version": "0.85.1-JOB-124062-e9724e3.22+e9724e3bd",
3
+ "version": "0.85.1-JOB-124062-569fcb4.27+569fcb4b6",
4
4
  "license": "MIT",
5
5
  "description": "React Native implementation of Atlantis",
6
6
  "repository": {
@@ -95,5 +95,5 @@
95
95
  "react-native-safe-area-context": "^5.4.0",
96
96
  "react-native-svg": ">=12.0.0"
97
97
  },
98
- "gitHead": "e9724e3bd24e880e276edcd72019b2cce0b102c0"
98
+ "gitHead": "569fcb4b6d2ef0068470ad901519b1a01de00ba5"
99
99
  }
@@ -15,6 +15,7 @@ export function useFormController({ name, value, validations, }) {
15
15
  rules: validations,
16
16
  defaultValue: value || undefined,
17
17
  });
18
+ // The naming convention established by react-hook-form for arrays of fields is, for example, "emails.0.description".
18
19
  // Preserve original behavior: only treat three-part names as nested paths.
19
20
  // For anything else, perform a flat lookup to avoid behavioral changes.
20
21
  const identifiers = fieldName.split(".");