Skip to content

Commit

Permalink
remove your from cta
Browse files Browse the repository at this point in the history
  • Loading branch information
markkaylor committed Jun 14, 2022
1 parent 54d5f9d commit db343dc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -33,7 +33,7 @@ const PageHeader = ({ isOnline, npmPackageType }) => {
>
{formatMessage({
id: `admin.pages.MarketPlacePage.submit.${npmPackageType}.link`,
defaultMessage: `Submit your ${npmPackageType}`,
defaultMessage: `Submit ${npmPackageType}`,
})}
</LinkButton>
)
Expand Down
Expand Up @@ -922,7 +922,7 @@ describe('Marketplace page', () => {
<span
class="c13 c14"
>
Submit your plugin
Submit plugin
</span>
</a>
</div>
Expand Down Expand Up @@ -1855,7 +1855,7 @@ describe('Marketplace page', () => {
const tabPanel = screen.getByRole('tabpanel');
const pluginCardText = await getByText(tabPanel, 'Comments');
const providerCardText = await queryByText(tabPanel, 'Cloudinary');
const submitPluginText = await queryByText(container, 'Submit your plugin');
const submitPluginText = await queryByText(container, 'Submit plugin');

expect(pluginsTabActive).not.toBe(null);
expect(pluginCardText).toBeVisible();
Expand All @@ -1873,7 +1873,7 @@ describe('Marketplace page', () => {
const tabPanel = screen.getByRole('tabpanel');
const providerCardText = await getByText(tabPanel, 'Cloudinary');
const pluginCardText = await queryByText(tabPanel, 'Comments');
const submitProviderText = await queryByText(container, 'Submit your provider');
const submitProviderText = await queryByText(container, 'Submit provider');

expect(providersTabActive).not.toBe(null);
expect(providerCardText).toBeVisible();
Expand Down

0 comments on commit db343dc

Please sign in to comment.