Skip to content

Commit

Permalink
Remove deprecated field (#1726)
Browse files Browse the repository at this point in the history
  • Loading branch information
cniackz authored Aug 15, 2023
1 parent 6404169 commit 55fa9dd
Showing 1 changed file with 0 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -431,20 +431,6 @@ const TenantIdentityProvider = ({ classes }: ITenantIdentityProvider) => {
overlayAction={() => setShowOIDCSecretID(!showOIDCSecretID)}
/>
</Grid>
<Grid item xs={12} className={classes.formFieldRow}>
<InputBoxWrapper
id="openID_callbackURL"
name="openID_callbackURL"
onChange={(e: React.ChangeEvent<HTMLInputElement>) => {
setOpenIDCallbackURL(e.target.value);
cleanValidation("openID_callbackURL");
}}
label="Callback URL"
value={openIDCallbackURL}
placeholder="https://your-console-endpoint:9443/oauth_callback"
error={validationErrors["openID_callbackURL"] || ""}
/>
</Grid>
<Grid item xs={12} className={classes.formFieldRow}>
<InputBoxWrapper
id="openID_claimName"
Expand Down

0 comments on commit 55fa9dd

Please sign in to comment.