aboutsummaryrefslogtreecommitdiff
path: root/src/services
diff options
context:
space:
mode:
authorShravya Ramesh <shravs1208@gmail.com>2021-03-12 10:57:38 -0800
committerShravya Ramesh <shravs1208@gmail.com>2021-03-12 10:57:38 -0800
commit20e4f9e5411bea400212737a7f3967052a3fe165 (patch)
treeafb37d386465c2a9368f5395496be7945163548e /src/services
parent2c97108964e5a8fc89f3a9839ea13103e86b340b (diff)
remove some unwanted console log
Diffstat (limited to 'src/services')
-rw-r--r--src/services/WaitlistUserService.tsx1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/services/WaitlistUserService.tsx b/src/services/WaitlistUserService.tsx
index 516affe3..f50b7f39 100644
--- a/src/services/WaitlistUserService.tsx
+++ b/src/services/WaitlistUserService.tsx
@@ -7,7 +7,6 @@ export const adduserToWaitlist: (
last_name: string,
) => Promise<boolean> = async (phone_number, first_name, last_name) => {
try {
- console.log(phone_number, first_name, last_name);
const response = await fetch(WAITLIST_USER_ENDPOINT, {
method: 'POST',
headers: {