diff --git a/src/Components/Faq.js b/src/Components/Faq.js index 5f9a17a..5843950 100644 --- a/src/Components/Faq.js +++ b/src/Components/Faq.js @@ -50,7 +50,7 @@ const Faq = () => {
-
we does not collect and process the data contained in these documents neither we store your document to our servers , rather we convert the content in vector store which can only be understand by Large Language Model to provide you with our services.
+
we do not collect and process the data contained in these documents neither we store your document to our servers , rather we convert the content in vector store which can only be understand by Large Language Model to provide you with our services.
diff --git a/src/Components/Navbar.js b/src/Components/Navbar.js index d1818df..a91180f 100755 --- a/src/Components/Navbar.js +++ b/src/Components/Navbar.js @@ -18,6 +18,7 @@ const Navbar = (props) => { const [mail, setMail] = useState({email:"", text:""}) const dispatch = useDispatch() let location = useLocation(); + const to = process.env.REACT_APP_TO const handleLogout =()=>{ localStorage.removeItem('token') @@ -55,7 +56,7 @@ const Navbar = (props) => { const body=`email: :${mail.email}

${mail.text}

` - const send = await contact("More Tokens Request",body) + const send = await contact("More Tokens Request",body, to) if(send.success){ showAlert('Message sent successfully','primary') setMail({email:"",text:""})