diff --git a/web/src/flows/stages/identification/IdentificationStage.ts b/web/src/flows/stages/identification/IdentificationStage.ts index bd6382175..bf1db0632 100644 --- a/web/src/flows/stages/identification/IdentificationStage.ts +++ b/web/src/flows/stages/identification/IdentificationStage.ts @@ -176,7 +176,7 @@ export class IdentificationStage extends BaseStage< renderInput(): TemplateResult { let type = "text"; - if (!this.challenge?.userFields) { + if (!this.challenge?.userFields || this.challenge.userFields.length === 0) { return html`

${t`Select one of the sources below to login.`}

`; } const fields = (this.challenge?.userFields || []).sort();