You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description NewsletterForm.tsx renders a form but it is unclear whether form submission is wired to any backend endpoint. Implement the submit handler and validate the email field.
Acceptance Criteria
Submitting a valid email POSTs to the backend newsletter endpoint.
Zod validates the email format before submission.
Success state replaces the form with a confirmation message.
Duplicate email or server error is shown as an inline error message.
Track
Frontend
Difficulty
Trivial
Description
NewsletterForm.tsxrenders a form but it is unclear whether form submission is wired to any backend endpoint. Implement the submit handler and validate the email field.Acceptance Criteria