diff --git a/client/gatsby-node.js b/client/gatsby-node.js index a74e33482b8..92e42f99ee7 100644 --- a/client/gatsby-node.js +++ b/client/gatsby-node.js @@ -323,7 +323,6 @@ exports.createSchemaCustomization = ({ actions }) => { hooks: Hooks id: String instructions: String - isComingSoon: Boolean isLastChallengeInBlock: Boolean isPrivate: Boolean module: String diff --git a/client/src/redux/prop-types.ts b/client/src/redux/prop-types.ts index 39c1fb56881..420b70d7072 100644 --- a/client/src/redux/prop-types.ts +++ b/client/src/redux/prop-types.ts @@ -213,7 +213,6 @@ export type ChallengeNode = { hooks?: Hooks; id: string; instructions: string; - isComingSoon: boolean; internal?: { content: string; contentDigest: string; diff --git a/client/src/templates/Introduction/components/block.test.tsx b/client/src/templates/Introduction/components/block.test.tsx index 469e39eda59..a2d539ac569 100644 --- a/client/src/templates/Introduction/components/block.test.tsx +++ b/client/src/templates/Introduction/components/block.test.tsx @@ -47,7 +47,6 @@ const defaultProps = { helpCategory: 'mockHelpCategory', id: 'mockId', instructions: 'mockInstructions', - isComingSoon: false, internal: { content: 'mockContent', contentDigest: 'mockContentDigest', diff --git a/curriculum/schema/challenge-schema.js b/curriculum/schema/challenge-schema.js index 5fbffecd83f..6b162eaa9ff 100644 --- a/curriculum/schema/challenge-schema.js +++ b/curriculum/schema/challenge-schema.js @@ -248,7 +248,6 @@ const schema = Joi.object().keys({ then: Joi.string().min(1).required(), otherwise: Joi.string().allow('') }), - isComingSoon: Joi.bool(), module: Joi.string().when('superBlock', { is: chapterBasedSuperBlocks, then: Joi.required(),