From 5a4723d243cc5c43a99e726d9efb67f93ac705e4 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Wed, 3 Jun 2020 20:13:32 +0100 Subject: [PATCH] don't specify hs_disabled as its a Synapse special Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- src/components/structures/LoggedInView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/structures/LoggedInView.tsx b/src/components/structures/LoggedInView.tsx index eb14cdc198..7fcaadf7a5 100644 --- a/src/components/structures/LoggedInView.tsx +++ b/src/components/structures/LoggedInView.tsx @@ -93,7 +93,7 @@ interface IProps { } interface IUsageLimit { - limit_type: "monthly_active_user" | "hs_disabled" | string; + limit_type: "monthly_active_user" | string; admin_contact?: string; }