Skip to content

Commit

Permalink
fix: make use of spendLocal and get rid of proposeSpend
Browse files Browse the repository at this point in the history
  • Loading branch information
ap211unitech committed Jan 30, 2025
1 parent 2841db4 commit e1f913e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/page-treasury/src/Overview/ProposalCreate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ function Propose ({ className }: Props): React.ReactElement<Props> | null {
label={t('Submit proposal')}
onStart={toggleOpen}
params={[value, beneficiary]}
tx={api.tx.treasury.proposeSpend}
tx={api.tx.treasury.spendLocal}
/>
</Modal.Actions>
</Modal>
Expand Down
10 changes: 3 additions & 7 deletions packages/page-treasury/src/Overview/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,9 @@ function Overview ({ className, isMember, members }: Props): React.ReactElement<
approvalCount={info?.approvals.length}
proposalCount={info?.proposals.length}
/>
{
api.tx.treasury.proposeSpend
? <Button.Group>
<ProposalCreate />
</Button.Group>
: <></>
}
<Button.Group>
<ProposalCreate />
</Button.Group>
<Proposals
isMember={isMember}
members={members}
Expand Down

0 comments on commit e1f913e

Please sign in to comment.