fix: added a missing semicolon (#32)

This commit is contained in:
Junwoo Ji 2020-04-09 15:56:59 +09:00 committed by GitHub
parent 0658746e22
commit 378805c358
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -847,7 +847,7 @@ if (subscription.isTrial || account.balance > 0) {
```ts
function canActivateService(subscription: Subscription, account: Account) {
return subscription.isTrial || account.balance > 0
return subscription.isTrial || account.balance > 0;
}
if (canActivateService(subscription, account)) {