浏览代码

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 11 个月前
父节点
当前提交
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


||||||
x
 
000:0
正在加载...
取消
保存