Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
update help link
jgiwinski committed Jan 31, 2024
1 parent 29fc68f commit 905a4fd
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cypress/e2e/spec.cy.js
@@ -60,7 +60,7 @@ context('SACDS', () => {
cy.get('h1').should('be.visible').and('contain.text', 'Both Entity ID and return URL are required.');
cy.get('p a')
.should('be.visible')
.and('have.attr', 'href', 'LINK_FROM_I2');
.and('have.attr', 'href', 'https://incommon.org/help/');
cy.get('p a').should('contain.text', 'Click Here');
})
})
2 changes: 1 addition & 1 deletion src/App.js
@@ -40,7 +40,7 @@ function App() {
{error ? (
<>
<h1>{error}</h1>
<p><a href="LINK_FROM_I2" target="_blank">Click Here</a> for more information.</p>
<p><a href="https://incommon.org/help/" target="_blank">Click Here</a> for more information.</p>
</>
) : (
<>

0 comments on commit 905a4fd

Please sign in to comment.