From d0c6ea48e37006b37ff018e59d17d5a7e47a2563 Mon Sep 17 00:00:00 2001 From: Tianzhou Chen Date: Fri, 19 May 2023 23:26:57 +0800 Subject: [PATCH] chore: reenable feature after db migration --- 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, }, };