diff --git a/web/src/flow/stages/identification/IdentificationStage.ts b/web/src/flow/stages/identification/IdentificationStage.ts index 9b167b526..25f407a39 100644 --- a/web/src/flow/stages/identification/IdentificationStage.ts +++ b/web/src/flow/stages/identification/IdentificationStage.ts @@ -158,7 +158,12 @@ export class IdentificationStage extends BaseStage< renderSource(source: LoginSource): TemplateResult { let icon = html``; if (source.iconUrl) { - icon = html`${source.name}`; + if (source.iconUrl.startsWith("fa://")) { + const url = source.iconUrl.replaceAll("fa://", ""); + icon = html``; + } else { + icon = html`${source.name}`; + } } return html`