Skip to content
This repository was archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
chore: remove unnecessary code lines
Browse files Browse the repository at this point in the history
  • Loading branch information
tobySolutions committed May 12, 2024
1 parent 673186b commit d6aef29
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/studio-ts/src/app/server.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export type FormState = {
}

export const handleWaitlistSubmit = async (
prevState: FormState | undefined,
prevState: FormState,
formData: FormData,
) => {
const url = process.env.NEXT_GOOGLE_SHEETS_API!
Expand All @@ -32,4 +32,6 @@ export const handleWaitlistSubmit = async (
} catch (error) {
return { message: 'Email address not sent', submitted: false }
}

return { message: 'Email address not sent', submitted: false }
}

0 comments on commit d6aef29

Please sign in to comment.