Skip to content

Commit

Permalink
district form fix
Browse files Browse the repository at this point in the history
  • Loading branch information
eelkus01 committed Jun 24, 2024
1 parent 067d5b9 commit 0c8beb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/pages/ballotInfo/districtForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ const DistrictForm: React.FC<DistrictFormProps> = ({ onFormSubmit }) => {
variant="outlined"
fullWidth
value={city}
onChange={(e) => setCity(e.target.value)}
onChange={(e) => setCity("Boston")}
required
sx={{ mb: 2 }}
/>
Expand All @@ -95,7 +95,7 @@ const DistrictForm: React.FC<DistrictFormProps> = ({ onFormSubmit }) => {
variant="outlined"
fullWidth
value={state}
onChange={(e) => setState(e.target.value)}
onChange={(e) => setState("MA")}
required
sx={{ mb: 2 }}
/>
Expand Down

0 comments on commit 0c8beb6

Please sign in to comment.