Skip to content

Commit b82aed3

Browse files
Merge branch 'main' into develop
2 parents 8ee7fd0 + feb1570 commit b82aed3

8 files changed

Lines changed: 16 additions & 9 deletions

File tree

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,7 @@
2121
npm-debug.log*
2222
yarn-debug.log*
2323
yarn-error.log*
24+
25+
# ignoring IDE settings
26+
.vscode
27+
.idea

.vscode/settings.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

public/humans.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
Este proyecto no habria sido posible sin el trabajo conjunto del equipo de Groway Studio
2+
3+
- Shamira Cordova
4+
- Cristian Del Cid
5+
- Harold Ñauina
6+
- Alejandra Suarez
7+
- David Enamorado
8+
- Luciana Della Perriera
File renamed without changes.

src/component/faqs.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default function Faqs() {
1919

2020
<FaqItem
2121
title="¿Cuándo inicia el curso?"
22-
description="El inicio del curso está programado para el día 22 de Septiembre
22+
description="El inicio del curso está programado para el día 24 de Septiembre
2323
de 2022."
2424
/>
2525

src/component/hero.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export default function Hero() {
6666
<figcaption>
6767
<span>
6868
<b>Inicio</b> <br />
69-
22 Septiembre
69+
24 Septiembre
7070
</span>
7171
<span>
7272
<b>Duración</b> <br />4 semanas

src/hooks/useUserInfo.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ const useUserInfo = () => {
6969
user_email: email,
7070
user_phone: `+51${phoneNumber}`,
7171
invitation_code: getParameterByName("invitation_code"),
72-
price: 99.0,
72+
price: 49.0,
7373
}),
7474
});
7575

src/pages/payment.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const Payment = () => {
1717

1818
useEffect(() => {
1919
(async () => {
20-
if (pathname === validPaths.success) {
20+
if (pathname === validPaths.success && !!user_data) {
2121
try {
2222
const payload = JSON.parse(user_data || "");
2323

0 commit comments

Comments
 (0)