Skip to content

Commit

Permalink
IFMC-3087 encode url values (#6)
Browse files Browse the repository at this point in the history
Co-authored-by: jgiwinski <juliaiwinski@gmail.com>
  • Loading branch information
julia and jgiwinski authored Jul 31, 2025
1 parent 6e9a96a commit c704407
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ function App() {
<p>You are accessing the following service: <strong>{displayName}</strong></p>
<div className="d-flex column align-items-center">
<p className="bottom-0">Select your home organization:</p>
<a href={`https://service.seamlessaccess.org/ds/?entityID=${entityID}&return=${returnUrl}`} className="d-flex sa-button">
<a href={`https://service.seamlessaccess.org/ds/?entityID=${encodeURIComponent(entityID)}&return=${encodeURIComponent(returnUrl)}`} className="d-flex sa-button">
<div className="sa-button-logo-wrap">
<img src="https://service.seamlessaccess.org/sa-white.svg" alt="Seamless Access Logo" className="sa-button-logo"/>
</div>
Expand Down

0 comments on commit c704407

Please sign in to comment.