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';
import './studio.scss';
const getComponentForItem = (item) => {
switch(item.type) {
const getComponentForItem = item => {
switch (item.type) {
case 'addprojecttostudio':
return (
<SocialMessage
......@@ -163,7 +163,7 @@ const StudioActivity = ({items, loading, error, onInitialLoad}) => {
<ul
className="studio-messages-list"
>
{items.map((item, index) =>
{items.map(item =>
getComponentForItem(item)
)}
</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