1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-11-02 08:40:08 +01:00

fix premium testing logic

This commit is contained in:
Kyle Spearrin 2018-02-16 15:04:04 -05:00
parent 830a437f1e
commit f064f5bd96

View File

@ -27,7 +27,7 @@ export class PremiumComponent implements OnInit {
private tokenService: TokenService, private apiService: ApiService) { }
async ngOnInit() {
this.isPremium = !this.tokenService.getPremium();
this.isPremium = this.tokenService.getPremium();
}
async refresh() {