diff --git a/README.md b/README.md index 7c0f609..957d13c 100644 --- a/README.md +++ b/README.md @@ -182,7 +182,7 @@ lib_deps = - Supabase RLS for all tables ## 🚫 Limitations - +- 3-4s Cold start time while connecting to edge server - Limited to upto 10 minutes of uninterrupted conversations - Edge server stops when wall clock time is exceeded - No speech interruption detection on ESP32 diff --git a/frontend-nextjs/app/components/Settings/AppSettings.tsx b/frontend-nextjs/app/components/Settings/AppSettings.tsx index e96506e..df55fa4 100644 --- a/frontend-nextjs/app/components/Settings/AppSettings.tsx +++ b/frontend-nextjs/app/components/Settings/AppSettings.tsx @@ -70,18 +70,6 @@ const AppSettings: React.FC = ({ }; const onSave = async (values: any, userType: "doctor" | "user") => { - console.log("onSave", values, userType); - if (userType === "doctor") { - await updateUser( - supabase, - { - user_info: { - user_type: userType, - user_metadata: values, - }, - }, - selectedUser!.user_id); - } else { await updateUser( supabase, { @@ -94,7 +82,6 @@ const AppSettings: React.FC = ({ }, }, selectedUser!.user_id); - } toast({ description: "Your prefereces have been saved!", });