Skip to content

Commit

Permalink
remove insecure logs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeddf committed Mar 20, 2021
1 parent a5ca70a commit c2d5172
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions pages/api/waitlist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ export default async function waitlist(req, res) {
let emailResult;

if (confirmedEmail) {
console.log(`email login to ${email} for ${emailId}`);
emailResult = await sendTemplateEmail(
"returning-user",
email,
Expand All @@ -95,7 +94,6 @@ export default async function waitlist(req, res) {
}
);
} else {
console.log(`email verify to ${email} for ${emailId}`);
emailResult = await sendTemplateEmail(
"email-verify",
email,
Expand Down
1 change: 0 additions & 1 deletion utils-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -508,7 +508,6 @@ export const useWaitlistQuery = () => {
"waitlist",
async () => {
const response = await directGraphQLQuery(waitlistQuery, token);
console.log({ waitlistResponse: response });
if (response.errors) {
window.sessionStorage.removeItem("tseWaitlistToken");
setToken();
Expand Down

0 comments on commit c2d5172

Please sign in to comment.