mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-08 02:52:39 -05:00
Fixed close action handling on magic link page
no issue Fixes magic link action button using incorrect action method - `handleSignin` - which failed on click, replaced with close popup action.
This commit is contained in:
parent
9aefe26ba7
commit
30a14023cf
1 changed files with 1 additions and 1 deletions
|
@ -30,7 +30,7 @@ export default class MagicLinkPage extends React.Component {
|
|||
const label = 'Close';
|
||||
return (
|
||||
<ActionButton
|
||||
onClick={e => this.handleSignin(e)}
|
||||
onClick={e => this.handleClose(e)}
|
||||
brandColor={this.context.brandColor}
|
||||
label={label}
|
||||
/>
|
||||
|
|
Loading…
Add table
Reference in a new issue