We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e030770 commit 3195417Copy full SHA for 3195417
packages/remix/src/utils/utils.ts
@@ -28,10 +28,8 @@ export async function storeFormDataKeys(
28
let attrKey = key;
29
30
if (formDataKeys?.[key]) {
31
- if (formDataKeys[key] === false) {
32
- return;
33
- } else if (typeof value === 'string') {
34
- attrKey = key;
+ if (typeof formDataKeys[key] === 'string') {
+ attrKey = formDataKeys[key] as string;
35
}
36
37
span.setAttribute(
0 commit comments