Skip to content

Commit

Permalink
don't remember repost bid amount
Browse files Browse the repository at this point in the history
  • Loading branch information
Sean Yesmunt committed Feb 19, 2020
1 parent 022ecc1 commit bbd263c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/modal/modalRepost/view.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit bbd263c

Please sign in to comment.