From 8cc0a7da3e2e3929122476bafb4cba5041f3347a Mon Sep 17 00:00:00 2001 From: wlee221 Date: Wed, 17 Nov 2021 12:16:52 -0500 Subject: [PATCH] Make authenticator service variable public --- .../authenticator/custom-slots/custom-slots.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/angular/src/pages/ui/components/authenticator/custom-slots/custom-slots.component.ts b/examples/angular/src/pages/ui/components/authenticator/custom-slots/custom-slots.component.ts index 57ef6c1e89f..a435315651e 100644 --- a/examples/angular/src/pages/ui/components/authenticator/custom-slots/custom-slots.component.ts +++ b/examples/angular/src/pages/ui/components/authenticator/custom-slots/custom-slots.component.ts @@ -9,7 +9,7 @@ import awsExports from '@environments/auth-with-federated/src/aws-exports'; templateUrl: 'custom-slots.component.html', }) export class CustomSlotsComponent { - constructor(private authenticator: AuthenticatorService) { + constructor(public authenticator: AuthenticatorService) { Amplify.configure(awsExports); } }