Skip to content

Commit a119ab0

Browse files
committed
Lint
1 parent f41f20c commit a119ab0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

packages/remix/src/utils/utils.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,10 @@ export async function storeFormDataKeys(
3434
attrKey = key;
3535
}
3636

37-
span.setAttribute(`remix.action_form_data.${attrKey}`, typeof value === 'string' ? value : '[non-string value]');
37+
span.setAttribute(
38+
`remix.action_form_data.${attrKey}`,
39+
typeof value === 'string' ? value : '[non-string value]',
40+
);
3841
}
3942
});
4043
} catch (e) {

0 commit comments

Comments
 (0)