Skip to content

Commit

Permalink
fix(AuthTimeoutPopup): referencing undefined var
Browse files Browse the repository at this point in the history
  • Loading branch information
frickjack committed Nov 30, 2017
1 parent e2cd00e commit a425799
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Popup/ReduxAuthTimeoutPopup.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ const timeoutPopupMapDispatch = () => ({});
const ReduxAuthTimeoutPopup = connect(timeoutPopupMapState, timeoutPopupMapDispatch)(
({ authPopup }) => {
if (authPopup) {
return (<AuthPopup history={history} />);
return (<AuthPopup />);
}
return null;
},
Expand Down

0 comments on commit a425799

Please sign in to comment.