Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Treasury Page in Kusama #10949

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/apps-routing/src/treasury.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export default function create (t: TFunction): Route {
Component,
display: {
needsApi: [
'tx.treasury.proposeSpend'
'tx.treasury.checkStatus'
]
},
group: 'governance',
Expand Down
8 changes: 4 additions & 4 deletions packages/page-treasury/src/Overview/ProposalCreate.tsx
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
// Copyright 2017-2024 @polkadot/app-treasury authors & contributors
// SPDX-License-Identifier: Apache-2.0

import type { Option, u128 } from '@polkadot/types';

Check failure on line 4 in packages/page-treasury/src/Overview/ProposalCreate.tsx

View workflow job for this annotation

GitHub Actions / pr (lint)

Run autofix to sort these imports!
import type { Permill } from '@polkadot/types/interfaces';
import type { BN } from '@polkadot/util';
import { BN } from '@polkadot/util';

Check failure on line 6 in packages/page-treasury/src/Overview/ProposalCreate.tsx

View workflow job for this annotation

GitHub Actions / pr (lint)

'/home/runner/work/apps/apps/node_modules/@polkadot/util/index.js' imported multiple times

import React, { useMemo, useState } from 'react';

import { Button, InputAddress, InputBalance, MarkWarning, Modal, Static, TxButton } from '@polkadot/react-components';
import { useApi, useToggle } from '@polkadot/react-hooks';
import { BN_HUNDRED, BN_MILLION } from '@polkadot/util';

Check failure on line 12 in packages/page-treasury/src/Overview/ProposalCreate.tsx

View workflow job for this annotation

GitHub Actions / pr (lint)

'/home/runner/work/apps/apps/node_modules/@polkadot/util/index.js' imported multiple times

import { useTranslation } from '../translate.js';

Expand All @@ -28,11 +28,11 @@

const [bondMin, bondMax, bondPercentage] = useMemo(
() => [
(api.consts.treasury.proposalBondMinimum as u128).toString(),
(api.consts.treasury.proposalBondMaximum as Option<u128>)?.isSome
api.consts.treasury.proposalBondMinimum ? (api.consts.treasury.proposalBondMinimum as u128).toString() : new BN(0),
api.consts.treasury.proposalBondMaximum && (api.consts.treasury.proposalBondMaximum as Option<u128>)?.isSome
? (api.consts.treasury.proposalBondMaximum as Option<u128>).unwrap().toString()
: null,
`${(api.consts.treasury.proposalBond as Permill).mul(BN_HUNDRED).div(BN_MILLION).toNumber().toFixed(2)}%`
api.consts.treasury.proposalBond ? `${(api.consts.treasury.proposalBond as Permill).mul(BN_HUNDRED).div(BN_MILLION).toNumber().toFixed(2)}%` : `0%`

Check failure on line 35 in packages/page-treasury/src/Overview/ProposalCreate.tsx

View workflow job for this annotation

GitHub Actions / pr (lint)

Strings must use singlequote
],
[api]
);
Expand Down
Loading