diff --git a/frontend/src/components/EventForm.tsx b/frontend/src/components/EventForm.tsx index 926d04f..fe0a6ab 100644 --- a/frontend/src/components/EventForm.tsx +++ b/frontend/src/components/EventForm.tsx @@ -249,6 +249,58 @@ const EventForm: React.FC = () => { helperText="Set to 0 for no additional guests, -1 for unlimited" inputProps={{ min: -1 }} /> + {/* Needed Items moved here */} + + + Needed Items + + + + + + + {formData.needed_items.map((item, index) => ( + handleRemoveItem(index)} + sx={{ + bgcolor: 'rgba(144, 202, 249, 0.2)', + color: 'rgba(255, 255, 255, 0.9)', + '& .MuiChip-deleteIcon': { + color: 'rgba(255, 255, 255, 0.7)', + '&:hover': { + color: 'rgba(255, 255, 255, 0.9)', + } + } + }} + /> + ))} + + @@ -311,58 +363,6 @@ const EventForm: React.FC = () => { style={{ display: 'none' }} /> - - - - Needed Items - - - - - - - {formData.needed_items.map((item, index) => ( - handleRemoveItem(index)} - sx={{ - bgcolor: 'rgba(144, 202, 249, 0.2)', - color: 'rgba(255, 255, 255, 0.9)', - '& .MuiChip-deleteIcon': { - color: 'rgba(255, 255, 255, 0.7)', - '&:hover': { - color: 'rgba(255, 255, 255, 0.9)', - } - } - }} - /> - ))} - -