Skip to content

Commit 4b94d6d

Browse files
committed
fix declaration of callback component in app module
1 parent 1db8545 commit 4b94d6d

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

projects/app-ziti-console/src/app/app.module.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,7 @@ import {
5252
IDENTITY_EXTENSION_SERVICE,
5353
SERVICE_POLICY_EXTENSION_SERVICE,
5454
EDGE_ROUTER_POLICY_EXTENSION_SERVICE,
55-
SERVICE_EDGE_ROUTER_POLICY_EXTENSION_SERVICE,
56-
CallbackComponent
55+
SERVICE_EDGE_ROUTER_POLICY_EXTENSION_SERVICE
5756
} from "ziti-console-lib";
5857

5958
import {AppRoutingModule} from "./app-routing.module";
@@ -91,8 +90,7 @@ if (environment.nodeIntegration) {
9190
declarations: [
9291
AppComponent,
9392
PageNotFoundComponent,
94-
LoginComponent,
95-
CallbackComponent
93+
LoginComponent
9694
],
9795
imports: [
9896
BrowserModule,

projects/ziti-console-lib/src/lib/pages/callback/callback.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {ZITI_DATA_SERVICE, ZitiDataService} from "../../services/ziti-data.servi
1010
import {SETTINGS_SERVICE} from "../../services/settings.service";
1111

1212
@Component({
13-
selector: 'app-callback',
13+
selector: 'lib-callback',
1414
template: '<lib-loading-indicator [isLoading]="true"></lib-loading-indicator>',
1515
})
1616
export class CallbackComponent implements OnInit {

0 commit comments

Comments
 (0)