Skip to content
Snippets Groups Projects
Commit b217a87e authored by KDSBrowne's avatar KDSBrowne
Browse files

fixed console log error

parent 6a580e9e
No related branches found
No related tags found
No related merge requests found
......@@ -54,11 +54,11 @@ Meteor.startup(() => {
.then(function (response) {
return response.json();
})
.done(function (data) {
.then(function (data) {
setMessages(data);
})
.catch(function (err) {
console.log('Error: Locale not found :(');
.catch(function error(err) {
console.log('request failed', err);
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment