Skip to content

Commit 3858f4d

Browse files
committed
fix: update FormSubmit endpoint to use verified email address in AppLayout and Landing components
1 parent 59fd9b2 commit 3858f4d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/layout/AppLayout.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ function SettingsMenu() {
227227
const handleSubmitReport = async (subject) => {
228228
setLoading(true);
229229
try {
230-
await fetch('https://formsubmit.co/ajax/0dc615d475c9bb4377bc1572ec4af891', {
230+
await fetch('https://formsubmit.co/ajax/suvinbusiness@gmail.com', {
231231
method: 'POST',
232232
headers: { 'Content-Type': 'application/json', 'Accept': 'application/json' },
233233
body: JSON.stringify({ name, message: content, _subject: subject, email: user?.email })

src/pages/Landing.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ export default function Landing() {
166166

167167
try {
168168
// Use FormSubmit.co for direct email delivery without backend SMTP config.
169-
await fetch('https://formsubmit.co/ajax/0dc615d475c9bb4377bc1572ec4af891', {
169+
await fetch('https://formsubmit.co/ajax/suvinbusiness@gmail.com', {
170170
method: 'POST',
171171
headers: {
172172
'Content-Type': 'application/json',

0 commit comments

Comments
 (0)