Merge branch 'develop' of github.com:public-awesome/stargaze-studio into develop

This commit is contained in:
jhernandezb 2022-10-21 12:48:55 -06:00
commit c691a3e47d
2 changed files with 2 additions and 1 deletions

View File

@ -71,7 +71,7 @@ export const CollectionDetails = ({ onChange, uploadMethod, coverImageUrl }: Col
description: descriptionState.value, description: descriptionState.value,
symbol: symbolState.value, symbol: symbolState.value,
imageFile: coverImage ? [coverImage] : [], imageFile: coverImage ? [coverImage] : [],
externalLink: externalLinkState.value, externalLink: externalLinkState.value || undefined,
startTradingTime: timestamp ? (timestamp.getTime() * 1_000_000).toString() : '', startTradingTime: timestamp ? (timestamp.getTime() * 1_000_000).toString() : '',
explicit, explicit,
} }

View File

@ -54,6 +54,7 @@ const CollectionCreationPage: NextPage = () => {
vendingFactory: vendingFactoryContract, vendingFactory: vendingFactoryContract,
} = useContracts() } = useContracts()
const scrollRef = useRef<HTMLDivElement>(null) const scrollRef = useRef<HTMLDivElement>(null)
const messages = useMemo( const messages = useMemo(
() => vendingFactoryContract?.use(VENDING_FACTORY_ADDRESS), () => vendingFactoryContract?.use(VENDING_FACTORY_ADDRESS),
[vendingFactoryContract, wallet.address], [vendingFactoryContract, wallet.address],