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