amount part deux
This commit is contained in:
parent
64d67026cc
commit
70ee34f52e
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue