+
+
+
+
+
+
{
+ if (!editable) {
+ return;
+ }
+ const value =
+ event.target.value === ""
+ ? null
+ : Number(event.target.value);
+ handleChange("maxRetries", value);
+ }}
+ />
+
+
+
+
+
+
+
{
+ if (!editable) {
+ return;
+ }
+ const value =
+ event.target.value === ""
+ ? null
+ : Number(event.target.value);
+ handleChange("maxStepsOverride", value);
+ }}
+ />
+
+
+
+
+
+
+
+
{
+ if (!editable) {
+ return;
+ }
+ handleChange(
+ "errorCodeMapping",
+ checked
+ ? JSON.stringify(errorMappingExampleValue, null, 2)
+ : "null",
+ );
+ }}
+ />
+
+ {inputs.errorCodeMapping !== "null" && (
+
+ {
+ if (!editable) {
+ return;
+ }
+ handleChange("errorCodeMapping", value);
+ }}
+ className="nowheel nopan"
+ fontSize={8}
+ />
+
+ )}
+
+
+
+
+
+
+
+
+ {
+ if (!editable) {
+ return;
+ }
+ handleChange("continueOnFailure", checked);
+ }}
+ />
+
+
+
+
+
+
+
+
+ {
+ if (!editable) {
+ return;
+ }
+ handleChange("cacheActions", checked);
+ }}
+ />
+
+
+
+
+
+
+
+
+
{
+ if (!editable) {
+ return;
+ }
+ handleChange("totpVerificationUrl", event.target.value);
+ }}
+ value={inputs.totpVerificationUrl ?? ""}
+ placeholder={commonFieldPlaceholders["totpVerificationUrl"]}
+ className="nopan text-xs"
+ />
+
+
+
+
+
+
+
{
+ if (!editable) {
+ return;
+ }
+ handleChange("totpIdentifier", event.target.value);
+ }}
+ value={inputs.totpIdentifier ?? ""}
+ placeholder={commonFieldPlaceholders["totpIdentifier"]}
+ className="nopan text-xs"
+ />
+
+
+