Bug Description
When editing a member profile, "Publisher" appears as an option in the offerings selection, but selecting it causes a validation error on submit.
Steps to Reproduce
- Navigate to personal member profile editing page
- Select "Publisher" as an offering
- Submit the form
Expected Behavior
If "Publisher" is a valid offering option, it should save successfully. If it's not valid, it should not appear as a selectable option in the UI.
Actual Behavior
Form submission fails with validation error: Invalid offerings: publisher
Error Message
Invalid offerings: publisher
Root Cause
Frontend form includes "Publisher" as a selectable offering, but backend validation does not accept it as a valid value. This is a mismatch between frontend options and backend schema validation.
Suggested Fix
Either:
- Add "publisher" to the valid offerings enum on the backend, OR
- Remove "Publisher" from the frontend form options
Impact
Users cannot save their profile if they select Publisher as an offering.
