Skip to content

Commit 1db3d50

Browse files
committed
Fixes #31862 - eslint error in Tasks/helpers.js
1 parent a7a07cb commit 1db3d50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

webpack/scenes/Tasks/helpers.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ const link = id => ({
1111
});
1212
const getErrors = task => (
1313
<ul>
14-
{task.humanized.errors.map(error => (
15-
<li key={error}> {error} </li>
14+
{task.humanized.errors.map(e => (
15+
<li key={e}> {e} </li>
1616
))}
1717
</ul>
1818
);

0 commit comments

Comments
 (0)