Cover collection updates

This commit is contained in:
Serkan Reis 2023-08-04 10:22:11 +03:00
parent 3d527c6682
commit c5e321e7f4

View File

@ -244,7 +244,7 @@ export const CollectionActions = ({
const resolveRoyaltyPaymentAddress = async () => {
await resolveAddress(royaltyPaymentAddressState.value.trim(), wallet).then((resolvedAddress) => {
setCollectionInfo({
description: descriptionState.value || undefined,
description: descriptionState.value.replace('\\n', '\n') || undefined,
image: imageState.value || undefined,
explicit_content: explicitContent,
external_link: externalLinkState.value || undefined,
@ -265,7 +265,7 @@ export const CollectionActions = ({
useEffect(() => {
setCollectionInfo({
description: descriptionState.value || undefined,
description: descriptionState.value.replace('\\n', '\n') || undefined,
image: imageState.value || undefined,
explicit_content: explicitContent,
external_link: externalLinkState.value || undefined,