diff --git a/src/components/modals/main/marketplace/SideloadFailedModal.jsx b/src/components/modals/main/marketplace/SideloadFailedModal.jsx index 1d769f74..c28f44b7 100644 --- a/src/components/modals/main/marketplace/SideloadFailedModal.jsx +++ b/src/components/modals/main/marketplace/SideloadFailedModal.jsx @@ -5,7 +5,7 @@ export default function SideloadFailedModal({ modalClose, reason }) { return ( <> -

{getMessage('modals.main.error_boundary.error')}

+

{getMessage('modals.main.error_boundary.title')}

{getMessage('modals.main.addons.sideload.failed')}

{reason} diff --git a/src/components/modals/main/marketplace/sections/Create.jsx b/src/components/modals/main/marketplace/sections/Create.jsx index feb813ab..a1a4f7e8 100644 --- a/src/components/modals/main/marketplace/sections/Create.jsx +++ b/src/components/modals/main/marketplace/sections/Create.jsx @@ -5,6 +5,7 @@ import { PhotoOutlined as Photos, FormatQuoteOutlined as Quotes } from '@mui/icons-material'; +import { TextField } from '@mui/material'; import { toast } from 'react-toastify'; import { saveFile } from 'modules/helpers/settings/modals'; @@ -207,18 +208,12 @@ export default class Create extends PureComponent { const writeDescription = ( <>

{getMessage('modals.main.marketplace.product.information')}

-

{getMessage('modals.main.addons.create.metadata.name')}

- setMetadata(e.target.value, 'name')}/> -

{getMessage('modals.main.marketplace.product.version')}

- setMetadata(e.target.value, 'version')}/> -

{getMessage('modals.main.marketplace.product.author')}

- setMetadata(e.target.value, 'author')}/> -

{getMessage('modals.main.addons.create.metadata.icon_url')}

- setMetadata(e.target.value, 'icon_url')}/> -

{getMessage('modals.main.addons.create.metadata.screenshot_url')}

- setMetadata(e.target.value, 'screenshot_url')}/> -

{getMessage('modals.main.addons.create.metadata.description')}

-