diff --git a/apps/admin-x-settings/src/components/settings/advanced/labs/AlphaFeatures.tsx b/apps/admin-x-settings/src/components/settings/advanced/labs/AlphaFeatures.tsx index 3256fc4474..ede57e0236 100644 --- a/apps/admin-x-settings/src/components/settings/advanced/labs/AlphaFeatures.tsx +++ b/apps/admin-x-settings/src/components/settings/advanced/labs/AlphaFeatures.tsx @@ -59,10 +59,6 @@ const features = [{ title: 'NestJS Playground', description: 'Wires up the Ghost NestJS App to the Admin API', flag: 'NestPlayground' -},{ - title: 'Internal Linking @-links (internal alpha)', - description: 'Adds internal URL search when typing @ in the editor', - flag: 'internalLinkingAtLinks' },{ title: 'ActivityPub', description: '(Highly) Experimental support for ActivityPub.', diff --git a/ghost/admin/app/components/koenig-lexical-editor.js b/ghost/admin/app/components/koenig-lexical-editor.js index 5482c79338..af4a4e7214 100644 --- a/ghost/admin/app/components/koenig-lexical-editor.js +++ b/ghost/admin/app/components/koenig-lexical-editor.js @@ -447,7 +447,7 @@ export default class KoenigLexicalEditor extends Component { collectionsCard: this.feature.collectionsCard, collections: this.feature.collections, internalLinking: this.feature.internalLinking, - internalLinkingAtLinks: this.feature.internalLinkingAtLinks, + internalLinkingAtLinks: this.feature.internalLinking, contentVisibility: this.feature.contentVisibility }, deprecated: { // todo fix typo diff --git a/ghost/admin/app/services/feature.js b/ghost/admin/app/services/feature.js index f9c6010f5d..717943baf7 100644 --- a/ghost/admin/app/services/feature.js +++ b/ghost/admin/app/services/feature.js @@ -83,7 +83,6 @@ export default class FeatureService extends Service { @feature('onboardingChecklist') onboardingChecklist; @feature('ActivityPub') ActivityPub; @feature('internalLinking') internalLinking; - @feature('internalLinkingAtLinks') internalLinkingAtLinks; @feature('editorExcerpt') editorExcerpt; @feature('newsletterExcerpt') newsletterExcerpt; diff --git a/ghost/core/core/shared/labs.js b/ghost/core/core/shared/labs.js index 9bad63298c..84bc349e36 100644 --- a/ghost/core/core/shared/labs.js +++ b/ghost/core/core/shared/labs.js @@ -54,7 +54,6 @@ const ALPHA_FEATURES = [ 'importMemberTier', 'lexicalIndicators', 'adminXDemo', - 'internalLinkingAtLinks', 'contentVisibility' ];