This commit is contained in:
Kenneth Jannette
2024-02-23 05:58:59 -06:00
parent 6767d59ea4
commit 263bf52ad5

View File

@@ -121,7 +121,16 @@ const SignupPage = () => {
}; };
const handleRightArrowClick = () => { const handleRightArrowClick = () => {
console.log("right");
console.log("left"); console.log("left");
if (valX == 1) {
return;
} else {
const tempx = valX + 1;
const tempy = valY + 1;
setValX(tempx);
setValY(tempy);
}
}; };
const vals = [ const vals = [
@@ -458,7 +467,7 @@ const SignupPage = () => {
const today = new Date(); const today = new Date();
const subscriptionCreated = today; const subscriptionCreated = today;
const subscriptionPeriodStart = today; const subscriptionPeriodStart = today;
const subscriptionPeriodEnd = "it edns whatever"; //today.setDate(today.getDate() + 30); const subscriptionPeriodEnd = "it ends whatever"; //today.setDate(today.getDate() + 30);
const subscriptionId = uuidv4(); const subscriptionId = uuidv4();
const userCredential = await createUserWithEmailAndPassword( const userCredential = await createUserWithEmailAndPassword(