0
Fork 0
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:
Rishabh 2022-02-17 11:32:52 +05:30
parent 70013735cc
commit 0ffa5830fd

View file

@ -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'
};
}