diff --git a/.cursor/rules/pr-descriptions.mdc b/.cursor/rules/pr-descriptions.mdc deleted file mode 100644 index c1199b2a13..0000000000 --- a/.cursor/rules/pr-descriptions.mdc +++ /dev/null @@ -1,13 +0,0 @@ ---- -description: Keep pull request descriptions limited to a concise summary of the changes -alwaysApply: true ---- - -# Pull Request Descriptions - -When creating or editing a pull request description: - -- Include only a concise summary of the changes. -- Do not mention Linear tickets or issue identifiers. -- Do not include validation, testing, or verification steps. -- Do not add boilerplate sections that duplicate information available elsewhere. diff --git a/src/analytics/features/index.ts b/src/analytics/features/index.ts index 6cbafeaa22..4f50415323 100644 --- a/src/analytics/features/index.ts +++ b/src/analytics/features/index.ts @@ -77,6 +77,22 @@ export function getFeatures() { export function getFeatureDescription(feature: Features, i18n: I18n) { switch (feature) { + case Features.PostFeedKnownLikersEnable: + return { + key: feature, + name: i18n._( + msg({ + message: 'Social proofing on posts', + comment: 'Name for a feature flag', + }), + ), + description: i18n._( + msg({ + message: 'Spot posts your friends and follows have liked.', + comment: 'Description of a feature flag (Social proofing on posts)', + }), + ), + } case Features.CanonicalPostNumberingEnable: return { key: feature,