Skip to content

Commit

Permalink
Removes console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
Eduardo Campaña committed Jun 7, 2018
1 parent ad6bf51 commit 03f7613
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/pwa/stores/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,7 @@ export default types
? result
.reduce((final, current) => {
current.forEach(session => {
if (!final.includes(session)) {
console.log('session:', session);
final.push(session);
}
if (!final.includes(session)) final.push(session);
});
return final;
}, [])
Expand Down

0 comments on commit 03f7613

Please sign in to comment.