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 f41f20c commit a119ab0Copy full SHA for a119ab0
packages/remix/src/utils/utils.ts
@@ -34,7 +34,10 @@ export async function storeFormDataKeys(
34
attrKey = key;
35
}
36
37
- span.setAttribute(`remix.action_form_data.${attrKey}`, typeof value === 'string' ? value : '[non-string value]');
+ span.setAttribute(
38
+ `remix.action_form_data.${attrKey}`,
39
+ typeof value === 'string' ? value : '[non-string value]',
40
+ );
41
42
});
43
} catch (e) {
0 commit comments