From 598fbf9d4a0c1f0053e265fe85c705983087e607 Mon Sep 17 00:00:00 2001 From: nomi-nonsz Date: Thu, 1 Jan 2026 17:50:21 +0700 Subject: [PATCH] Remove log --- src/components/form/contact-form.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/components/form/contact-form.tsx b/src/components/form/contact-form.tsx index 698d08e..2387f76 100644 --- a/src/components/form/contact-form.tsx +++ b/src/components/form/contact-form.tsx @@ -55,9 +55,7 @@ export default function ContactForm() { setStatus('loading'); try { - const req = await axios.post('/api/contact', data); - const res = req.data; - console.log(res); + await axios.post('/api/contact', data); setStatus('success'); } catch (err) {