Переглянути джерело

Had billing prompt users with subscribed status

Hiding based on user status and not only billing details allows easier
testing with fake users.
master
Immanuel Onyeka 7 місяці тому
джерело
коміт
171b508dee
1 змінених файлів з 2 додано та 1 видалено
  1. +2
    -1
      components/app.vue

+ 2
- 1
components/app.vue Переглянути файл

@@ -239,7 +239,8 @@ function start() {
fetchUser().then( u => {
if (u.sub.customerId &&
validStatuses.includes(u.sub.paymentStatus) &&
this.user.status != "Unsubscribed") {
this.user.status != "Unsubscribed" ||
this.user.status != "Subscribed") {
return
}
// Payment must be updated


Завантаження…
Відмінити
Зберегти