Remove internal review case log; use support address in contact fallbacks

The false-positive case log documents real production designs and belongs
in the private repo only. Contact-form fallback strings now point at the
public support address.
This commit is contained in:
Siddharth Kothari
2026-07-16 23:40:39 -07:00
parent 6672d2be57
commit 6e83ef9da0
2 changed files with 2 additions and 170 deletions
@@ -29,7 +29,7 @@ export async function submitContactForm(data: {
}
return {
success: false,
message: result.message || "Something went wrong. Please try again or email us directly at sid@faradworks.com.",
message: result.message || "Something went wrong. Please try again or email us directly at dev@faradworks.com.",
};
}
@@ -37,7 +37,7 @@ export async function submitContactForm(data: {
} catch {
return {
success: false,
message: "Could not reach the server. Please try again or email us directly at sid@faradworks.com.",
message: "Could not reach the server. Please try again or email us directly at dev@faradworks.com.",
};
}
}