Skip to content

Commit

Permalink
fix get more token send
Browse files Browse the repository at this point in the history
  • Loading branch information
mohdzain98 committed Jun 30, 2024
1 parent 4ae60fa commit dc97431
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Components/Faq.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const Faq = () => {
</button>
</h2>
<div id="flush-collapseThree" className="accordion-collapse collapse" aria-labelledby="flush-headingThree" data-bs-parent="#accordionFlushExample">
<div className="accordion-body">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.</div>
<div className="accordion-body">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.</div>
</div>
</div>
</div>
Expand Down
3 changes: 2 additions & 1 deletion src/Components/Navbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down Expand Up @@ -55,7 +56,7 @@ const Navbar = (props) => {
const body=`<strong>email: </strong>:${mail.email}
<p>${mail.text}</p>
`
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:""})
Expand Down

0 comments on commit dc97431

Please sign in to comment.