Skip to content

IFMC-3087 encode url values #6

Merged
merged 1 commit into from
Jul 31, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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