From 70ee34f52e3dcc22554c4eb14d4d5b7f02d084cf Mon Sep 17 00:00:00 2001 From: jessop Date: Fri, 3 Jul 2020 11:03:29 -0400 Subject: [PATCH] amount part deux --- ui/component/channelEdit/view.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/component/channelEdit/view.jsx b/ui/component/channelEdit/view.jsx index 891261d1e..c23124a11 100644 --- a/ui/component/channelEdit/view.jsx +++ b/ui/component/channelEdit/view.jsx @@ -21,7 +21,7 @@ const MAX_TAG_SELECT = 5; type Props = { claim: ChannelClaim, title: string, - amount: string, + amount: number, coverUrl: string, thumbnailUrl: string, location: { search: string }, @@ -101,7 +101,7 @@ function ChannelForm(props: Props) { thumbnailUrl, description, title, - amount: Number(amount) || 0.001, + amount: amount || 0.001, languages: languages || [], locations: locations || [], tags: tags