Skip to content
Snippets Groups Projects
Commit 630c12ba authored by Paul Kaplan's avatar Paul Kaplan
Browse files

Fix linting

parent 5f8ce77b
Branches
Tags
No related merge requests found
......@@ -159,8 +159,11 @@ class LoaderComponent extends React.Component {
className={styles.messageContainerInner}
style={{transform: `translate(0, -${this.state.messageNumber * 25}px)`}}
>
{messages.map(m => (
<div className={styles.message}>
{messages.map((m, i) => (
<div
className={styles.message}
key={i}
>
{m.message}
</div>
))}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment