mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-27 23:41:29 +00:00
don't remember repost bid amount
This commit is contained in:
parent
022ecc1f5f
commit
bbd263c441
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ function ModalRepost(props: Props) {
|
||||||
const defaultName = claim && claim.name;
|
const defaultName = claim && claim.name;
|
||||||
const contentClaimId = claim && claim.claim_id;
|
const contentClaimId = claim && claim.claim_id;
|
||||||
const [repostChannel, setRepostChannel] = usePersistedState('repost-channel');
|
const [repostChannel, setRepostChannel] = usePersistedState('repost-channel');
|
||||||
const [repostBid, setRepostBid] = usePersistedState('repost-bid', 0.01);
|
const [repostBid, setRepostBid] = React.useState(0.01);
|
||||||
const [showAdvanced, setShowAdvanced] = React.useState();
|
const [showAdvanced, setShowAdvanced] = React.useState();
|
||||||
const [repostName, setRepostName] = React.useState(defaultName);
|
const [repostName, setRepostName] = React.useState(defaultName);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue