From 14f46a8ca99494cc6095e8a6ed788499552d2af8 Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Fri, 25 Mar 2022 10:43:03 -0600 Subject: [PATCH] Update location of Settings.ts in labs docs (#21562) --- docs/feature-flags.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/feature-flags.md b/docs/feature-flags.md index 1e7e5cce37..ddca7d40bd 100644 --- a/docs/feature-flags.md +++ b/docs/feature-flags.md @@ -35,7 +35,7 @@ clients commit to doing the associated clean up work once a feature stabilises. When starting work on a feature, we should create a matching feature flag: 1. Add a new - [setting](https://github.com/matrix-org/matrix-react-sdk/blob/develop/src/settings/Settings.ts) + [setting](https://github.com/matrix-org/matrix-react-sdk/blob/develop/src/settings/Settings.tsx) of the form: ```js "feature_cats": { @@ -81,7 +81,7 @@ configs. **Note:** The above will only enable the feature for https://app.element.io and official Element Desktop builds. It will not be enabled for self-hosted installed, custom desktop builds, etc. To -cover these cases, change the setting's `default` in `Settings.ts` to `true`. +cover these cases, change the setting's `default` in `Settings.tsx` to `true`. ## Feature deployed successfully