Skip to content
This repository has been archived by the owner on Jan 1, 2024. It is now read-only.

Commit

Permalink
fix(UserItem): use logo as default img
Browse files Browse the repository at this point in the history
fix(UserItem): use logo as default img
  • Loading branch information
Metnew committed Sep 28, 2017
1 parent 16bd782 commit c2e8cce
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/common/containers/UserItem/components/index.jsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
// @flow
import React from 'react'
import {Card, Icon, Image} from 'semantic-ui-react'
//
import type {UserItem} from 'types'

type Props = {
Expand All @@ -11,7 +10,7 @@ type Props = {
const UserItemComponent = ({user}: Props) => {
return (
<Card>
<Image alt={`${user.name}`} src={require('images/daniel.jpg')} />
<Image alt={`${user.name}`} src={require('images/Logo.svg')} />
<Card.Content>
<Card.Header>
{user.name}
Expand Down

0 comments on commit c2e8cce

Please sign in to comment.