From 35dbc82b87f5aba8b5ab91afa4a7afb6d0ab5a4a Mon Sep 17 00:00:00 2001 From: Will Hunt Date: Fri, 5 Mar 2021 15:01:48 +0000 Subject: [PATCH] Add issue comments --- src/components/structures/LoggedInView.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/structures/LoggedInView.tsx b/src/components/structures/LoggedInView.tsx index 508b7f05e7..5acc8c6891 100644 --- a/src/components/structures/LoggedInView.tsx +++ b/src/components/structures/LoggedInView.tsx @@ -93,6 +93,8 @@ interface IProps { } interface IUsageLimit { + // "hs_disabled" is NOT a specced string, but is used in Synapse + // This is tracked over at https://github.com/matrix-org/synapse/issues/9237 // eslint-disable-next-line camelcase limit_type: "monthly_active_user" | "hs_disabled" | string; // eslint-disable-next-line camelcase @@ -102,6 +104,8 @@ interface IUsageLimit { interface IState { syncErrorData?: { error: { + // This is not specced, but used in Synapse. See + // https://github.com/matrix-org/synapse/issues/9237#issuecomment-768238922 data: IUsageLimit; errcode: string; };