From bbd263c4413935ee4fac7b7b79b7f73b42d9c1f6 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Wed, 19 Feb 2020 11:08:08 -0500 Subject: [PATCH] don't remember repost bid amount --- ui/modal/modalRepost/view.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/modal/modalRepost/view.jsx b/ui/modal/modalRepost/view.jsx index 5aaed7e30..a82e396f0 100644 --- a/ui/modal/modalRepost/view.jsx +++ b/ui/modal/modalRepost/view.jsx @@ -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);