Skip to content

Commit

Permalink
Encode Uri component to fix zoeken op email bug (#2720)
Browse files Browse the repository at this point in the history
  • Loading branch information
OscarBakker authored Oct 4, 2023
1 parent d1c8d53 commit 05f6cda
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/signals/incident-management/saga.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export function* fetchIncidents() {

export function* searchIncidents() {
try {
const q = yield select(makeSelectSearchQuery)
const q = encodeURIComponent(yield select(makeSelectSearchQuery))

yield put(applyFilterRefreshStop())

Expand Down

0 comments on commit 05f6cda

Please sign in to comment.