diff --git a/src/curated-extensions.ts b/src/curated-extensions.ts index 86a822041..3d1f18070 100644 --- a/src/curated-extensions.ts +++ b/src/curated-extensions.ts @@ -2,7 +2,7 @@ import { ExternalExtension } from "./types"; import extensions from "./extensions.json"; const CURATED_EXTENSIONS = extensions.reduce>((acc, ext) => { - if (!ext.branch || !ext.repository || !ext.description) { + if (!ext.repository) { throw new Error(`Extension missing required fields: ${JSON.stringify(ext)}`); }