diff --git a/packages/scratch-gui/src/components/gui/gui.jsx b/packages/scratch-gui/src/components/gui/gui.jsx index b5d2f6d332..315e3e7c41 100644 --- a/packages/scratch-gui/src/components/gui/gui.jsx +++ b/packages/scratch-gui/src/components/gui/gui.jsx @@ -99,6 +99,7 @@ const GUIComponent = props => { onClickAccountNav, onCloseAccountNav, onLogOut, + onClickLogin, onOpenRegistration, onToggleLoginOpen, onActivateCostumesTab, @@ -274,6 +275,7 @@ const GUIComponent = props => { onClickLogo={onClickLogo} onCloseAccountNav={onCloseAccountNav} onLogOut={onLogOut} + onClickLogin={onClickLogin} onOpenRegistration={onOpenRegistration} onProjectTelemetryEvent={onProjectTelemetryEvent} onSeeCommunity={onSeeCommunity} @@ -463,6 +465,7 @@ GUIComponent.propTypes = { onLogOut: PropTypes.func, onNewSpriteClick: PropTypes.func, onNewLibraryCostumeClick: PropTypes.func, + onClickLogin: PropTypes.func, onOpenRegistration: PropTypes.func, onRequestCloseBackdropLibrary: PropTypes.func, onRequestCloseCostumeLibrary: PropTypes.func,