Skip to content

Commit

Permalink
feat(fixes): XO fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
maticzav committed Mar 10, 2018
1 parent df9e51e commit 201f758
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions src/emma.js
Expand Up @@ -122,7 +122,7 @@ const SearchResults = ({ foundPackages, onToggle, loading }) => {
onSelect={onToggle}
/>
{isEmpty(foundPackages) && (
<NotFoundInfo/>
<NotFoundInfo/>
)}
{loading === PROGRESS_LOADING && (
<div>
Expand Down Expand Up @@ -150,9 +150,11 @@ const InstallInfo = () => (
)

const NotFoundInfo = () => (
<div>
<Text grey>We haven't found any package that would match your input...</Text>
</div>
<div>
<Text grey>
{`We couldn't find any package that would match your input...`}
</Text>
</div>
)

const ErrorInfo = () => (
Expand Down

0 comments on commit 201f758

Please sign in to comment.