Skip to content

Commit

Permalink
Fixed up assets not included with build
Browse files Browse the repository at this point in the history
  • Loading branch information
joshghent committed Aug 16, 2018
1 parent 46f51f2 commit 49f9d0b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/gifList.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export default class GifList extends React.Component {
return (
<div>
<input onKeyPress={this.handleKeyPress.bind(this)} onChange={this.handleChange} type='text' className='search-input' placeholder='🔍 Search GIFs'/>
<img src="./assets/giphy-mark.png" className="giphy-watermark"/>
<img src="./../assets/giphy-mark.png" className="giphy-watermark"/>
<div className='gif-list'>
{gifNodes}
</div>
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,8 @@
},
"files": [
"dist/**/*",
"node_modules/**/*"
"node_modules/**/*",
"assets/*"
]
}
}

0 comments on commit 49f9d0b

Please sign in to comment.