From b634c7f1787a8fb01bc3a3aefadd55f1fd747cad Mon Sep 17 00:00:00 2001 From: Thomas Rittson Date: Fri, 9 Apr 2021 15:50:39 +1000 Subject: [PATCH] Make tokenService public to correctly extend base --- src/popup/send/send-add-edit.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/popup/send/send-add-edit.component.ts b/src/popup/send/send-add-edit.component.ts index 7f44f47956c..b993da74fd3 100644 --- a/src/popup/send/send-add-edit.component.ts +++ b/src/popup/send/send-add-edit.component.ts @@ -41,7 +41,7 @@ export class SendAddEditComponent extends BaseAddEditComponent { userService: UserService, messagingService: MessagingService, policyService: PolicyService, environmentService: EnvironmentService, datePipe: DatePipe, sendService: SendService, private route: ActivatedRoute, private router: Router, private location: Location, - private popupUtilsService: PopupUtilsService, private tokenService: TokenService) { + private popupUtilsService: PopupUtilsService, tokenService: TokenService) { super(i18nService, platformUtilsService, environmentService, datePipe, sendService, userService, messagingService, policyService, tokenService); }