From 019d18a81ea65efbc76080c9507d943ca0a2eb91 Mon Sep 17 00:00:00 2001 From: David Ernst Date: Thu, 13 Jul 2023 17:55:10 -0700 Subject: [PATCH] ballot_design Wizard: Remove old WIP comment --- src/admin/BallotDesign/Wizard.tsx | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/src/admin/BallotDesign/Wizard.tsx b/src/admin/BallotDesign/Wizard.tsx index a4c90eba..7c62a69e 100644 --- a/src/admin/BallotDesign/Wizard.tsx +++ b/src/admin/BallotDesign/Wizard.tsx @@ -7,28 +7,6 @@ import { check_for_urgent_ballot_errors } from './check_for_ballot_errors' import { IOSSwitch } from './IOSSwitch' export const Wizard = ({ design, setDesign }: { design: string; setDesign: (s: string) => void }) => { - /* Features to support - - - [x] See current design - - - [x] Edit item title - - [x] Edit options name - - [x] Delete existing options - - [x] Toggle 'Write in' allowed - - [x] Create new options - - [x] Add new questions - - [x] Delete questions - - [x] Set item ID - - - [ ] Edit option's subline (e.g. Party affiliation) - - [ ] Edit item description - - [ ] Edit item final question ("Should this bill be") - - [ ] Re-order items - - [ ] Reorder existing options - - [ ] Edit option's short_id (if too long) - - - [ ] Collapse item's options -*/ const [json, setJson] = useState() const errors = check_for_urgent_ballot_errors(design)