Fix env variables

This commit is contained in:
1ilit
2024-03-15 21:09:50 +02:00
parent 725f01d8da
commit 7a406eb6d3
3 changed files with 3 additions and 2 deletions

View File

@@ -65,7 +65,7 @@ function Form({ theme }) {
editor.update(() => {
const sendMail = async () => {
await axios
.post(`${import.meta.env.VITE_API_BACKEND_URL}/send_email`, {
.post(`${import.meta.env.VITE_BACKEND_URL}/send_email`, {
subject: `[BUG REPORT]: ${data.title}`,
message: $generateHtmlFromNodes(editor),
attachments: data.attachments,