From f825533afa165e78f9de1e661a8373f58d22dcb6 Mon Sep 17 00:00:00 2001 From: zeppi Date: Wed, 16 Dec 2020 10:28:57 -0500 Subject: [PATCH] cleanup --- ui/component/repostCreate/view.jsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ui/component/repostCreate/view.jsx b/ui/component/repostCreate/view.jsx index ff3a105bb..7fbd6a9ce 100644 --- a/ui/component/repostCreate/view.jsx +++ b/ui/component/repostCreate/view.jsx @@ -20,7 +20,7 @@ type Props = { doToast: ({ message: string }) => void, doClearRepostError: () => void, doRepost: StreamRepostOptions => Promise<*>, - title: string, // + title: string, claim?: StreamClaim, enteredContentClaim?: StreamClaim, balance: number, @@ -72,7 +72,6 @@ function RepostCreate(props: Props) { const [repostBid, setRepostBid] = React.useState(0.01); const [repostBidError, setRepostBidError] = React.useState(undefined); - // const [bidChanged, setBidChanged] = React.useState(false); const [takeoverAmount, setTakeoverAmount] = React.useState(0); const [enteredRepostName, setEnteredRepostName] = React.useState(defaultName); const [available, setAvailable] = React.useState(true);