Skip to content

Commit bb95f29

Browse files
committed
Lint
1 parent 6f74ab7 commit bb95f29

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/remix/src/utils/utils.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,10 @@ export async function storeFormDataKeys(
3232
attrKey = key;
3333
}
3434

35-
span.setAttribute(`remix.action_form_data.${attrKey}`, typeof value === 'string' ? value : '[non-string value]');
35+
span.setAttribute(
36+
`remix.action_form_data.${attrKey}`,
37+
typeof value === 'string' ? value : '[non-string value]',
38+
);
3639
}
3740
});
3841
} catch (e) {

0 commit comments

Comments
 (0)