Fix syncMode defult to lower case. (#2931)
This commit is contained in:
parent
4eb4448878
commit
f1705380fa
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ export const AdvancedSettings = ({ isOIDC, isSAML }: AdvancedSettingsProps) => {
|
|||
>
|
||||
<Controller
|
||||
name="config.syncMode"
|
||||
defaultValue={syncModes[0]}
|
||||
defaultValue={syncModes[0].toUpperCase()}
|
||||
control={control}
|
||||
render={({ onChange, value }) => (
|
||||
<Select
|
||||
|
|
Loading…
Reference in a new issue