don't remember repost bid amount

This commit is contained in:
Sean Yesmunt 2020-02-19 11:08:08 -05:00
parent 022ecc1f5f
commit bbd263c441

View file

@ -45,7 +45,7 @@ function ModalRepost(props: Props) {
const defaultName = claim && claim.name;
const contentClaimId = claim && claim.claim_id;
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 [repostName, setRepostName] = React.useState(defaultName);