mirror of
https://github.com/bitwarden/desktop.git
synced 2024-11-24 11:55:50 +01:00
Don't use tokenService to manage emailVerified (#841)
* Update send add-edit component dependencies * bump jslib
This commit is contained in:
parent
6acfba4b40
commit
0724041daf
2
jslib
2
jslib
@ -1 +1 @@
|
||||
Subproject commit 92df63304029049891a46d575612222fb9b6c325
|
||||
Subproject commit 66eec2b02260ce41227e83153020f561d105b1ba
|
@ -8,7 +8,6 @@ import { MessagingService } from 'jslib/abstractions/messaging.service';
|
||||
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
|
||||
import { PolicyService } from 'jslib/abstractions/policy.service';
|
||||
import { SendService } from 'jslib/abstractions/send.service';
|
||||
import { TokenService } from 'jslib/abstractions/token.service';
|
||||
import { UserService } from 'jslib/abstractions/user.service';
|
||||
|
||||
import { AddEditComponent as BaseAddEditComponent } from 'jslib/angular/components/send/add-edit.component';
|
||||
@ -21,9 +20,9 @@ export class AddEditComponent extends BaseAddEditComponent {
|
||||
constructor(i18nService: I18nService, platformUtilsService: PlatformUtilsService,
|
||||
environmentService: EnvironmentService, datePipe: DatePipe,
|
||||
sendService: SendService, userService: UserService,
|
||||
messagingService: MessagingService, policyService: PolicyService, tokenService: TokenService) {
|
||||
messagingService: MessagingService, policyService: PolicyService) {
|
||||
super(i18nService, platformUtilsService, environmentService,
|
||||
datePipe, sendService, userService, messagingService, policyService, tokenService);
|
||||
datePipe, sendService, userService, messagingService, policyService);
|
||||
}
|
||||
|
||||
async refresh() {
|
||||
|
Loading…
Reference in New Issue
Block a user