1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-06-25 10:26:00 +02:00

fixed build complaint

This commit is contained in:
addison 2021-02-03 17:09:04 -05:00
parent 6e49c481f0
commit de162cd34f

View File

@ -8,7 +8,11 @@ import {
templateUrl: 'access.component.html',
})
export class AccessComponent implements OnInit {
constructor() { }
constructor() {
return;
}
ngOnInit() { }
ngOnInit() {
return;
}
}