mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Fixed default name/email for logged-in member in offer checkout flow
- for logged in members, offer screen was not using the existing name/email values in stripe checkout request - this did not have side effects as we still attach member session identity in checkout request, - updates portal to send the name/email when present to checkout request
This commit is contained in:
parent
70013735cc
commit
0ffa5830fd
1 changed files with 4 additions and 4 deletions
|
@ -217,11 +217,11 @@ export const OfferPageStyles = `
|
|||
export default class OfferPage extends React.Component {
|
||||
static contextType = AppContext;
|
||||
|
||||
constructor(props) {
|
||||
super(props);
|
||||
constructor(props, context) {
|
||||
super(props, context);
|
||||
this.state = {
|
||||
name: '',
|
||||
email: '',
|
||||
name: context?.member?.name || '',
|
||||
email: context?.member?.email || '',
|
||||
plan: 'free'
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue