Skip to content

Commit

Permalink
Use nonceWithPending on the ProposalCreatePage
Browse files Browse the repository at this point in the history
  • Loading branch information
adamgall committed Apr 4, 2024
1 parent 932fc1b commit b9171bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/daos/[daoAddress]/proposals/new/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default function ProposalCreatePage() {
return (
<Formik<CreateProposalForm>
validationSchema={createProposalValidation}
initialValues={{ ...DEFAULT_PROPOSAL, nonce: safe.nonce }}
initialValues={{ ...DEFAULT_PROPOSAL, nonce: safe.nonceWithPending }}
onSubmit={async values => {
const { nonce } = values;
const proposalData = await prepareProposal(values);
Expand Down

0 comments on commit b9171bb

Please sign in to comment.