Skip to content
This repository has been archived by the owner on Oct 11, 2022. It is now read-only.

Commit

Permalink
Merge pull request #2603 from withspectrum/fix-219-bugs
Browse files Browse the repository at this point in the history
Small fixes to help danger pass 2.1.9
  • Loading branch information
mxstbr authored Mar 19, 2018
2 parents c27d54b + 7eb29f8 commit 29ebd11
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion iris/models/user.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ const createOrFindUser = (
})
.catch(err => {
if (user.id) {
console.log(err);
console.error(err);
return new Error(`No user found for id ${user.id}.`);
}
return storeUser(user);
Expand Down
2 changes: 1 addition & 1 deletion iris/mutations/message/addMessage.js
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export default async (
};
})
.catch(err => {
console.log('Error sending message', err);
console.error('Error sending message', err);
return new UserError('Error sending message, please try again');
});
};
1 change: 1 addition & 0 deletions src/components/chatInput/components/style.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
// @flow
import styled from 'styled-components';
import { zIndex } from 'src/components/globals';

Expand Down

0 comments on commit 29ebd11

Please sign in to comment.