remix-validated-form 5.1.4 → 5.1.5
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/.turbo/turbo-build.log +18 -18
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -4
package/dist/index.esm.js
CHANGED
@@ -1121,7 +1121,7 @@ var useDefaultValuesFromLoader = ({
|
|
1121
1121
|
const match = matches.reverse().find(
|
1122
1122
|
(match2) => match2.data && typeof match2.data === "object" && dataKey in match2.data
|
1123
1123
|
);
|
1124
|
-
return
|
1124
|
+
return match == null ? void 0 : match.data[dataKey];
|
1125
1125
|
}
|
1126
1126
|
return null;
|
1127
1127
|
};
|