Skip to content
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.

Commit

Permalink
Changed the success message
Browse files Browse the repository at this point in the history
  • Loading branch information
nerddtvg committed Feb 21, 2024
1 parent 963754a commit f3d06a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/careers/CareersForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ export default function CareersForm() {
// Checking status directly because we may get a redirect for OK
if (response.status < 400) {
event.currentTarget.reset();
setError("The request was sent. We look forward to speaking with you soon!");
setError("The message was sent. We look forward to speaking with you soon!");

setTimeout(() => { setError(null); }, 5000);
setTimeout(() => { setError(null); }, 10000);
} else {
throw new Error("Invalid response from postback.");
}
Expand Down

0 comments on commit f3d06a7

Please sign in to comment.