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

Commit

Permalink
fix(): fix eslint issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Metnew committed Aug 10, 2017
1 parent 860dbf4 commit c5fce67
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions src/common/containers/Dashboard/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,9 @@ class Dashboard extends Component {
<title>Dashboard</title>
</Helmet>
{postsLoaded
? // Is postsLoaded => component, else Loader
<DashboardComponent
{...{posts, postsLoaded, postsLoading, count}}
/>
? <DashboardComponent
{...{posts, postsLoaded, postsLoading, count}}
/>
: <Loader active>Loading...</Loader>}
</div>
)
Expand Down

0 comments on commit c5fce67

Please sign in to comment.