File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
apps/dashboard/src/components/contract-components Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -92,7 +92,9 @@ export function ContractPublishForm(props: {
9292 customFactoryAddresses :
9393 props . publishMetadata . factoryDeploymentData ?. customFactoryInput
9494 ?. customFactoryAddresses || { } ,
95- params : props . publishMetadata . factoryDeploymentData ?. customFactoryInput ?. params || [ ] ,
95+ params :
96+ props . publishMetadata . factoryDeploymentData ?. customFactoryInput
97+ ?. params || [ ] ,
9698 } ,
9799 } ,
98100 constructorParams : props . publishMetadata . constructorParams || { } ,
Original file line number Diff line number Diff line change @@ -18,8 +18,7 @@ export const ContractIdImage: React.FC<ContractIdImageProps> = ({
1818} ) => {
1919 const deployMetadataResultQuery = useFetchDeployMetadata ( contractId ) ;
2020
21- const logo =
22- deployMetadataResultQuery . data ?. logo ;
21+ const logo = deployMetadataResultQuery . data ?. logo ;
2322
2423 const img =
2524 deployMetadataResultQuery . data ?. image !== "custom"
You can’t perform that action at this time.
0 commit comments