disable PWA

This commit is contained in:
taskylizard
2023-11-03 12:29:16 +05:30
parent 1da62476e4
commit fa47ec2e45
2 changed files with 99 additions and 116 deletions

View File

@@ -45,7 +45,10 @@ async function handleSubmit(type?: string) {
try {
const response = await fetch("https://fmhy.vercel.app/api/feedback", {
method: "POST",
body: JSON.parse(body),
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify(body),
});
const data = await response.json();