Skip to content

Commit

Permalink
fix: disable save as draft button for now
Browse files Browse the repository at this point in the history
  • Loading branch information
helmturner committed Jul 3, 2024
1 parent b13df7d commit 3500e16
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/features/voting/ProposalFormButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,9 @@ export default function AddProposalButton({
)}
/>
<DialogFooter className="flex justify-end p-2">
<Button
{
// TODO: Disabled until the Drafts UI is completed
/* <Button
className="mr-2"
type="submit"
name="status-draft"
Expand All @@ -224,7 +226,8 @@ export default function AddProposalButton({
busy={form.getValues('isDraft') && loading}
>
Save Draft
</Button>
</Button> */
}
<Button
name="status-open"
type="submit"
Expand Down

0 comments on commit 3500e16

Please sign in to comment.