Commit 3bffdd14 authored by Bryce Johnson's avatar Bryce Johnson

Don't stringify initStoreOnce error object on log.

parent 9e6c5853
......@@ -31,7 +31,7 @@
this.assignToRootStore('showApprovals', true);
})
.catch((err) => {
console.error(`Failed to initialize approvals store: ${err}`);
console.error('Failed to initialize approvals store', err);
});
}
return Promise.resolve();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment