@@ -153,20 +144,22 @@ export function FlagUserModal({ modCenterArticleUrl, authorId }) {
-
Report other inappropriate conduct
-
+
-
+
(
-
);
};
diff --git a/cypress/integration/seededFlows/publishingFlows/uploadImage.spec.js b/cypress/integration/seededFlows/publishingFlows/uploadImage.spec.js
index 98c81c339..01e40cc61 100644
--- a/cypress/integration/seededFlows/publishingFlows/uploadImage.spec.js
+++ b/cypress/integration/seededFlows/publishingFlows/uploadImage.spec.js
@@ -18,8 +18,8 @@ describe('Upload image', () => {
});
// Confirm the UI has updated to show the uploaded state
- cy.findByRole('button', {
- name: 'Copy Markdown for imageCopy...',
+ cy.findByRole('button', {
+ name: 'Copy markdown for image',
}).should('exist');
});
});
diff --git a/cypress/integration/seededFlows/readingListFlows/readingList.spec.js b/cypress/integration/seededFlows/readingListFlows/readingList.spec.js
index bbe7d27b5..7f0fbf3db 100644
--- a/cypress/integration/seededFlows/readingListFlows/readingList.spec.js
+++ b/cypress/integration/seededFlows/readingListFlows/readingList.spec.js
@@ -83,7 +83,7 @@ describe('Reading List Archive', () => {
cy.get('@main')
.contains('Test Article 1')
.parents('article')
- .findByLabelText(/^Archive item$/i)
+ .findByRole('button', { name: /^archive$/i })
.click();
cy.wait('@archiveItem');
diff --git a/cypress/integration/seededFlows/readingListFlows/readingListArchive.spec.js b/cypress/integration/seededFlows/readingListFlows/readingListArchive.spec.js
index 39e15c989..fa8f37086 100644
--- a/cypress/integration/seededFlows/readingListFlows/readingListArchive.spec.js
+++ b/cypress/integration/seededFlows/readingListFlows/readingListArchive.spec.js
@@ -81,7 +81,7 @@ describe('Reading List Archive', () => {
cy.get('@main')
.contains('Test Article 1')
.parents('article')
- .findByLabelText(/^Archive item$/i)
+ .findByRole('button', { name: /^unarchive$/i })
.click();
cy.wait('@unarchiveItem');