Skip to content

Commit

Permalink
fix string concate issue
Browse files Browse the repository at this point in the history
  • Loading branch information
DilshanSenarath committed Aug 4, 2024
1 parent 971af90 commit 13be80d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -416,8 +416,8 @@ export const ConnectedApps: FunctionComponent<ConnectedAppsPropsInterface> = (
pathname: AppConstants.getPaths().get("APPLICATION_SIGN_IN_METHOD_EDIT")
.replace(":id", appId).replace(":tabName", tabName),

search: `?${ ApplicationManagementConstants.APP_STATE_STRONG_AUTH_PARAM_KEY }=
${ ApplicationManagementConstants.APP_STATE_STRONG_AUTH_PARAM_VALUE }`,
search: `?${ ApplicationManagementConstants.APP_STATE_STRONG_AUTH_PARAM_KEY }` +
`=${ ApplicationManagementConstants.APP_STATE_STRONG_AUTH_PARAM_VALUE }`,

state: { id: editingIDP.id, name: editingIDP.name }
});
Expand Down

0 comments on commit 13be80d

Please sign in to comment.