Commit 790e4333 authored by Eric Rosenbaum's avatar Eric Rosenbaum

lint

parent 94d0f30b
...@@ -13,8 +13,8 @@ import SocialMessage from '../../components/social-message/social-message.jsx'; ...@@ -13,8 +13,8 @@ import SocialMessage from '../../components/social-message/social-message.jsx';
import './studio.scss'; import './studio.scss';
const getComponentForItem = (item) => { const getComponentForItem = item => {
switch(item.type) { switch (item.type) {
case 'addprojecttostudio': case 'addprojecttostudio':
return ( return (
<SocialMessage <SocialMessage
...@@ -163,7 +163,7 @@ const StudioActivity = ({items, loading, error, onInitialLoad}) => { ...@@ -163,7 +163,7 @@ const StudioActivity = ({items, loading, error, onInitialLoad}) => {
<ul <ul
className="studio-messages-list" className="studio-messages-list"
> >
{items.map((item, index) => {items.map(item =>
getComponentForItem(item) getComponentForItem(item)
)} )}
</ul> </ul>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment