Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH-1644: Fix Unchecked runtime.lastError in message handler #362

Merged
merged 7 commits into from Apr 2, 2019
revert falsey check on account reducer
  • Loading branch information
christophertino committed Apr 2, 2019
commit 7f602af333135695d99b5b60e61f44dbc0d16f39
@@ -34,7 +34,7 @@ export default (state = initialState, action) => {
switch (action.type) {
case UPDATE_PANEL_DATA: {
const { account } = action.data;
if (!account) {
if (account === null) {
return Object.assign({}, initialState);
}
const {
ProTip! Use n and p to navigate between commits in a pull request.