1
0
mirror of https://github.com/oceanprotocol/market.git synced 2024-12-02 05:57:29 +01:00

Removing unnecessary changes

This commit is contained in:
Jamie Hewitt 2022-04-08 14:24:09 +03:00
parent 2846ce2391
commit 0c5ab617ab
2 changed files with 8 additions and 11 deletions

View File

@ -287,7 +287,6 @@ export default function PublishPage({
title={<Title networkId={values.user.chainId} />}
description={content.description}
/>
<Form className={styles.form} ref={scrollToRef}>
<Navigation />
<Steps feedback={feedback} />

View File

@ -8,15 +8,13 @@ export default function PagePublish(): ReactElement {
const { title, description } = content
return (
<>
<Page
title={title}
description={description}
uri={router.route}
noPageHeader
>
<Publish content={content} />
</Page>
</>
<Page
title={title}
description={description}
uri={router.route}
noPageHeader
>
<Publish content={content} />
</Page>
)
}