File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed
apps/dashboard/src/components/contract-components Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ export function ContractPublishForm(props: {
9292 customFactoryAddresses :
9393 props . publishMetadata . factoryDeploymentData ?. customFactoryInput
9494 ?. customFactoryAddresses || { } ,
95- params : props . publishMetadata . customFactoryInput ?. params || [ ] ,
95+ params : props . publishMetadata . factoryDeploymentData ?. customFactoryInput ?. params || [ ] ,
9696 } ,
9797 } ,
9898 constructorParams : props . publishMetadata . constructorParams || { } ,
Original file line number Diff line number Diff line change @@ -17,8 +17,7 @@ export const ContractDescriptionCell: React.FC<
1717 }
1818 >
1919 < Text size = "body.md" noOfLines = { 1 } >
20- { deployMetadataResultQuery . data ?. latestPublishedContractMetadata
21- ?. publishedMetadata . description ||
20+ { deployMetadataResultQuery . data ?. description ||
2221 ( ! deployMetadataResultQuery . isFetching ? "First Version" : "None" ) }
2322 </ Text >
2423 </ Skeleton >
Original file line number Diff line number Diff line change @@ -19,8 +19,7 @@ export const ContractIdImage: React.FC<ContractIdImageProps> = ({
1919 const deployMetadataResultQuery = useFetchDeployMetadata ( contractId ) ;
2020
2121 const logo =
22- deployMetadataResultQuery . data ?. latestPublishedContractMetadata
23- ?. publishedMetadata . logo ;
22+ deployMetadataResultQuery . data ?. logo ;
2423
2524 const img =
2625 deployMetadataResultQuery . data ?. image !== "custom"
You can’t perform that action at this time.
0 commit comments