feat: remove unused branding component from callback, update authentication service to handle missing issuer in configuration

This commit is contained in:
Marek Lesko
2025-10-30 16:51:21 +00:00
parent b2a57675a7
commit e1bb591a38
4 changed files with 20 additions and 45 deletions

View File

@@ -2,13 +2,12 @@ import { Component } from '@angular/core';
import { Router, RouterModule } from '@angular/router';
import { CoreService } from '../../../services/core.service';
import { MaterialModule } from '../../../material.module';
import { BrandingComponent } from '../../../layouts/full/vertical/sidebar/branding.component';
import { AuthenticationService } from '../../../services/authentication.service';
import { NgScrollbarModule } from "ngx-scrollbar";
@Component({
selector: 'app-callback',
imports: [RouterModule, MaterialModule, BrandingComponent, NgScrollbarModule],
imports: [RouterModule, MaterialModule, NgScrollbarModule],
templateUrl: './callback.component.html',
})
export class CallbackComponent {