@palisadoes I saw your post which included issues with reCaptcha
`https://community.talawa.io/threads/gsoc-2026-talawa.82/`
I found the following problems:
1. minimal typos in talawa-admin
Here 'yes' is in lowerCase, But it should be in UpperCase 'YES'
This is the only change required on talawa-admin side
2. No implementation of reCaptcha in talawa-api on current develop branch, it is present in legacy branches
since there is no current implementation of reCaptcha on api side, i created it from scratch and it is working.
We can make sure it will not break in future by testing it using:
cypress -> talawa-admin
vitest -> talawa-admin, talawa-api.
I would like to work further on it after completing my current assigned issues.
`https://community.talawa.io/threads/gsoc-2026-talawa.82/`
I found the following problems:
1. minimal typos in talawa-admin
JavaScript:
if (REACT_APP_USE_RECAPTCHA !== 'yes') {
return true;
}
Here 'yes' is in lowerCase, But it should be in UpperCase 'YES'
This is the only change required on talawa-admin side
2. No implementation of reCaptcha in talawa-api on current develop branch, it is present in legacy branches
since there is no current implementation of reCaptcha on api side, i created it from scratch and it is working.
We can make sure it will not break in future by testing it using:
cypress -> talawa-admin
vitest -> talawa-admin, talawa-api.
I would like to work further on it after completing my current assigned issues.