Skip to content

Commit

Permalink
Fixes #31862 - eslint error in Tasks/helpers.js
Browse files Browse the repository at this point in the history
  • Loading branch information
jturel committed Feb 11, 2021
1 parent a7a07cb commit 1db3d50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webpack/scenes/Tasks/helpers.js
Expand Up @@ -11,8 +11,8 @@ const link = id => ({
});
const getErrors = task => (
<ul>
{task.humanized.errors.map(error => (
<li key={error}> {error} </li>
{task.humanized.errors.map(e => (
<li key={e}> {e} </li>
))}
</ul>
);
Expand Down

0 comments on commit 1db3d50

Please sign in to comment.