From f146bebe5a0ab71b4120615d72394fffdac3b80f Mon Sep 17 00:00:00 2001 From: DomKing Date: Mon, 17 Jun 2024 17:22:16 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9Aupdate=20Member=20field=20error=20(?= =?UTF-8?q?#5295)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/models/common.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/models/common.ts b/web/models/common.ts index 6a941655c5..f9ade855f0 100644 --- a/web/models/common.ts +++ b/web/models/common.ts @@ -62,7 +62,7 @@ export type TenantInfoResponse = { trial_end_reason: null | 'trial_exceeded' | 'using_custom' } -export type Member = Pick & { +export type Member = Pick & { avatar: string status: 'pending' | 'active' | 'banned' | 'closed' role: 'owner' | 'admin' | 'editor' | 'normal'