Skip to content

Commit 06bed7d

Browse files
committed
feat: always can be skip
1 parent 1f8ecc6 commit 06bed7d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/CreateFlexPlan/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { ProjectType as contractProjectType } from '@subql/contract-sdk';
2424
import { ProjectType } from '@subql/network-query';
2525
import { formatSQT, useAsyncMemo } from '@subql/react-hooks';
2626
import { parseError, TOKEN, tokenDecimals } from '@utils';
27-
import { Button, Checkbox, Divider, Form, InputNumber, Popover, Radio, Tooltip } from 'antd';
27+
import { Button, Checkbox, Divider, Form, InputNumber, Popover, Tooltip } from 'antd';
2828
import BigNumberJs from 'bignumber.js';
2929
import clsx from 'clsx';
3030
import { BigNumber } from 'ethers';
@@ -773,7 +773,7 @@ const CreateFlexPlan: FC<IProps> = ({ deploymentId, project, prevHostingPlan, pr
773773
Back
774774
</Button>
775775
<span style={{ flex: 1 }}></span>
776-
{currentStep === 1 && depositBalance?.gt(0) && (
776+
{currentStep === 1 && (
777777
<Button
778778
shape="round"
779779
size="large"

0 commit comments

Comments
 (0)