more
This commit is contained in:
@@ -75,9 +75,9 @@ const SignupPage = () => {
|
||||
}
|
||||
};
|
||||
|
||||
const handleConfirmPromoCode = () => {
|
||||
if (issueText === marchEmailPrm) {
|
||||
handlePromoSignup();
|
||||
const handleConfirmPromoCode = (code) => {
|
||||
if (code === marchEmailPrm) {
|
||||
handlePromoSignup(code);
|
||||
}
|
||||
};
|
||||
|
||||
@@ -467,7 +467,7 @@ const SignupPage = () => {
|
||||
}
|
||||
};
|
||||
|
||||
const handlePromoSignup = async () => {
|
||||
const handlePromoSignup = async (code) => {
|
||||
let dataValues = validateUserData();
|
||||
if (dataValues === null) {
|
||||
return;
|
||||
@@ -540,7 +540,8 @@ const SignupPage = () => {
|
||||
<h1 className="signup-header-text">Create A Novodraft Account</h1>
|
||||
{!isUpgrade ? (
|
||||
<h5 className="signup-header-text trial">
|
||||
Start a free trial - save hours and draft smarter discovery
|
||||
Create an account to start a free trial - save time and draft
|
||||
smarter
|
||||
</h5>
|
||||
) : (
|
||||
<></>
|
||||
|
||||
Reference in New Issue
Block a user