amount
This commit is contained in:
parent
2315727385
commit
4fa6a561ed
1 changed files with 2 additions and 1 deletions
|
@ -51,6 +51,7 @@ function ChannelForm(props: Props) {
|
||||||
const {
|
const {
|
||||||
uri,
|
uri,
|
||||||
claim,
|
claim,
|
||||||
|
amount,
|
||||||
title,
|
title,
|
||||||
description,
|
description,
|
||||||
website,
|
website,
|
||||||
|
@ -100,7 +101,7 @@ function ChannelForm(props: Props) {
|
||||||
thumbnailUrl,
|
thumbnailUrl,
|
||||||
description,
|
description,
|
||||||
title,
|
title,
|
||||||
amount: 0.001,
|
amount: Number(amount) || 0.001,
|
||||||
languages: languages || [],
|
languages: languages || [],
|
||||||
locations: locations || [],
|
locations: locations || [],
|
||||||
tags: tags
|
tags: tags
|
||||||
|
|
Loading…
Reference in a new issue