From 7054abe13a9c5a91e1d6b64736adfa22005ef7f1 Mon Sep 17 00:00:00 2001 From: Tianzhou Chen Date: Thu, 18 May 2023 22:51:06 +0800 Subject: [PATCH] chore: reenable account, payment and quota --- src/utils/feature.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/utils/feature.ts b/src/utils/feature.ts index be48f74..28ce67f 100644 --- a/src/utils/feature.ts +++ b/src/utils/feature.ts @@ -9,9 +9,9 @@ const matrix: { [key: string]: { [feature: string]: boolean } } = { }, production: { debug: false, - account: false, - payment: false, - quota: false, + account: true, + payment: true, + quota: true, }, };